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

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -