New to Kendo UI for jQueryStart a free 30-day trial

Restore

methods

Restores a maximized or minimized Window to its previous state. Triggers the resize and restore events.

Returns:kendo.ui.Window

- Returns the Window object to support chaining.

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow();
var dialog = $("#dialog").data("kendoWindow");

// maximize the Window
dialog.maximize();

setTimeout(function() {
  // restore its original size
  dialog.restore();
}, 1000);
</script>
Not finding the help you need?
Contact Support