How to close KendoUI modal window when click on overlay outside window?
jquery, kendo-ui, kendo-window, modal-dialog
Solution
Try something like this:
var dialog = $("#dialog2").kendoWindow({
modal: true
}).data("kendoWindow").center();
$(document).on("click", ".k-overlay", function () {
dialog.close();
});
(demo)
Problem
I have Kendo UI modal window opened and I want to close it by clicking on overlay. How can I do that?