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

Triggered when a Window has finished its closing animation.

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  deactivate: function() {
    // the closing animation has finished
  }
});
</script>
<div id="dialog"></div>
<script>
function window_deactivate() {
  // the closing animation has finished
}
$("#dialog").kendoWindow();
var dialog = $("#dialog").data("kendoWindow");
dialog.bind("deactivate", window_deactivate);
</script>
Not finding the help you need?
Contact Support