Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/04/2013, 11:26
cesar43f
 
Fecha de Ingreso: abril-2012
Ubicación: Leon Gto
Mensajes: 21
Antigüedad: 12 años, 7 meses
Puntos: 1
Respuesta: usar widgets de kendo ui dinamicamente

bueno, ya lo solucione.... por si a alguien le pasa

Código Javascript:
Ver original
  1. <script>
  2.             $(document).ready(function() {
  3.                 $("#btn").click(function(){
  4.                     $("#result").after('<input id="datetimepicker" value=""  /><br><input type="button" id="boton" value="boton">');
  5.                     $("#datetimepicker").kendoDateTimePicker({
  6.                         culture: "es-MX",
  7.                         format: "yyyy-MM-dd HH:mm:00"
  8.                     });
  9.                 });
  10.                 $("#result").on("click", "#boton", function(){
  11.                    
  12.                 });
  13.             });
  14.         </script>