size String (default: "auto")

Sets a predefined size to the Window. The width and height configuration options override the predefined size.

The supported values are:

  • auto
  • small
  • medium
  • large

Example

<div id="window"></div>
<script>
$("#window").kendoWindow({
  size: "wide"
});
</script>
In this article