Hi! I use the Modal popup. I want to intercept the closing/hiding of the modal. I want to ask the User if he saved everything - after that the modal can be closed. If the user clicks "no" the modal should stay opened.
Thanks! DAniel
Solution: around Line 189 in daypilot2.1.js:
window.setTimeout(function() {
This.hideDiv.onclick = function() { if(confirm("QUESTION?")) This.hide(); };
}, 500);