Copy link to clipboard
Copied
Is there any way to detect the closing of the UI without disabling { closeButton: false } and adding a manually close button?
(for example, as onShow function works but in this case onClose)
Copy link to clipboard
Copied
var w = new Window("dialog");
w.onClose = function () {
alert("message");
}
w.show();