closable Boolean (default: true)

Specifies whether a close button should be rendered at the top corner of the dialog.

Example

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