open

Triggered when a Window is opened, that is, when the open() method is called.

Example - subscribing to the open event during initialization

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  open: function() {
    // the opening animation is about to start
  }
});
</script>

Example - subscribing to the open event after initialization

<div id="dialog"></div>
<script>
function window_open() {
  // the opening animation is about to start
}
$("#dialog").kendoWindow();
var dialog = $("#dialog").data("kendoWindow");
dialog.bind("open", window_open);
</script>
In this article