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

Open

events

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

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  open: function() {
    // the opening animation is about to start
  }
});
</script>
<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>
Not finding the help you need?
Contact Support