Can you add a modal background to the Kendo window?

Using kendo ui and using the UI WIDGET window , http://demos.kendoui.com/web/window/index.html

Is it possible to add a modal background in light gray, as you can in the jQuery ui http://jqueryui.com/dialog/#modal dialog box?

Is it possible to make the background non-clickable?

+8
javascript jquery kendo-ui kendo-window
source share
1 answer

Just use the modal parameter:

 $("#dialog").kendoWindow({ modal: true }); 

You can customize the color by overriding CSS, if necessary.

+18
source share

All Articles