9

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 ?

Lars Höppner
  • 18,252
  • 2
  • 45
  • 73
Hello-World
  • 9,277
  • 23
  • 88
  • 154

1 Answers1

22

Simply use the modal configuration option:

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

You can adjust the color by overriding the CSS if necessary.

Lars Höppner
  • 18,252
  • 2
  • 45
  • 73