Using kendo ui, and using the window UI WIDGET, .html
Is it possible to add a modal background in light grey color like you can in Jquery ui dialog ?
Is it possible to make the background non-clickable ?
Using kendo ui, and using the window UI WIDGET, http://demos.kendoui.com/web/window/index.html
Is it possible to add a modal background in light grey color like you can in Jquery ui dialog http://jqueryui.com/dialog/#modal ?
Is it possible to make the background non-clickable ?
Share Improve this question edited Jan 8, 2014 at 12:40 Lars Höppner 18.4k2 gold badges47 silver badges73 bronze badges asked Jan 8, 2014 at 12:33 Hello-WorldHello-World 9,55524 gold badges90 silver badges157 bronze badges1 Answer
Reset to default 22Simply use the modal
configuration option:
$("#dialog").kendoWindow({
modal: true
});
You can adjust the color by overriding the CSS if necessary.