Indicates whether the close action has been triggered by the user (by clicking the close button or hitting the escape key). When the close method has been called, this field is false.
<divid="dialog"></div><script>$("#dialog").kendoDialog({title:"Kendo Dialog Component",content:"This is your Kendo Dialog.",close:function(e){// close animation has finished playing}});</script>
<divid="dialog"></div><script>functiondialog_close(e){// close animation has finished playing}$("#dialog").kendoDialog({title:"Kendo Dialog Component",content:"This is your Kendo Dialog."});var dialog =$("#dialog").data("kendoDialog");
dialog.bind("close", dialog_close);</script>