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

hola que tal, tengo la siguiente duda, ojala me puedan ayudar, estoy probando el widget de kendo ui de datetimepicker:

[URL="http://demos.kendoui.com/web/datetimepicker/index.html"]http://demos.kendoui.com/web/datetimepicker/index.html[/URL]

El problema consiste en que no he podido hacer que cargue dinamicamente, ej, si hago esto funciona correctamente:

Código HTML:
<input id="datetimepicker" value="" style="width:200px;" /> 
Código:
<script>
            $(document).ready(function() {
                $("#datetimepicker").kendoDateTimePicker({
                    culture: "es-MX",
                    format: "yyyy-MM-dd HH:mm:00"
                });
            });
        </script>
pero si hago esto, no:

Código HTML:
<input type="button" id="cargar" value="cargar"><br><div id="miform"></div> 
Código:
<script>
            $(document).ready(function() {
                $("#cargar").click(function(){
                    $("#miform").html('<input id="datetimepicker" value="" style="width:200px;" />');
                });
                $("#datetimepicker").kendoDateTimePicker({
                    culture: "es-MX",
                    format: "yyyy-MM-dd HH:mm:00"
                });
            });
        </script>
estaba intentando usar las funciones on y delegate de jquery, pero no he tenido exito, alguna sugerencia?