Specifies whether the dialog should show a modal overlay over the page.

Example

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  modal: true
});
</script>
In this article