Check documentation for the latest version of dhtmlxSuite onHide DHTMLX Docs

onHide

fires when the popup is being hidden

void onHide();

Example

myPop.attachEvent("onHide", function(){
    console.log("The popup window is hidden");
});

Back to top