fires before a popup is hidden
fromOuterClick | boolean | true, for a click outside a popup, otherwise - false |
e | Event | the native mouse event |
boolean | true to hide a popup, false to block hiding a popup |
dhxPopup.events.on("BeforeHide", function(fromOuterClick,e){
console.log("A popup will be hidden");
return true;
});
The event is blockable. Return false to block hiding a popup.
Back to top