dragend

Triggered when a Window has been moved by the user.

Example - subscribing to the dragend event during initialization

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  dragend: function() {
    // the user has released the Window after dragging
  }
});
</script>

Example - subscribing to the dragend event after initialization

<div id="dialog"></div>
<script>
function window_dragend() {
  // the user has released the Window after dragging
}
$("#dialog").kendoWindow();
var dialog = $("#dialog").data("kendoWindow");
dialog.bind("dragend", window_dragend);
</script>
In this article