size String (default: "auto")

Set predefined size to the dialog. The width and height configuration options override the predefined size.

Possible values are:

  • auto
  • small
  • medium
  • large

Example

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