restore

Triggered when the Window is restored to its previous state(maximized or minimized) by pressing the restore button, or when the restore() method is called.

Example - subscribing to the restore event during initialization

<div id="dialog"></div>

<script>
  $("#dialog").kendoWindow({
    restore: function() {
      // the Window is back to its previous state
    }
  });
</script>

Example - subscribing to the restore event after initialization

<div id="dialog"></div>

<script>
  function window_restore() {
    // the Window is back to its previous state
  }

  var dialog = $("#dialog").kendoWindow().getKendoWindow();

  dialog.bind("restore", window_restore);
</script>
In this article