Check documentation for the latest version of dhtmlxSuite onShow DHTMLX Docs

onShow

fires when the popup window is being shown

void onShow(string|number id);
idstring|numberthe id of the item that invokes a popup opening (when popup is attached to a toolbar or a form)

Example

myPop.attachEvent("onShow", function(id){
    console.log("The popup window is visible");
});

Back to top