angularjs - how to open a kendo UI modal window and pass it some help text to display, using angular -
angularjs - how to open a kendo UI modal window and pass it some help text to display, using angular -
i looking simple equivalent msgbox.show( message text) when using kendo ui in angular, without using bootstrapui since i'm using kendo ui.
i've read http://blogs.telerik.com/kendoui/posts/13-06-24/announcing-angular-kendo-ui
but has modal window defined in markup.
is there counterpart jquery version dynamically creates div , stuffs markup html property?
     $(".helpimg").on("click", function (e) {        $(document.createelement('div'))         .attr({ title: 'help', 'class': 'help' })         .html(help[e.target.id])         .dialog({             buttons: { ok: function () { $(this).dialog('close'); } },             close: function () { $(this).remove(); },             draggable: true,             modal: true,             resizable: true,             width: '50%',             height: 'auto'         });    });       
you can dynamically create kendo window objects applying kendowindow() function on dynamically created div document.  seek dojo ,  allow me know if looking : 
http://dojo.telerik.com/esawi/2
 angularjs kendo-ui modal-dialog 
 
  
Comments
Post a Comment