Check documentation for the latest version of dhtmlxSuite onContentClick DHTMLX Docs

onContentClick

fires when the user clicks on the popup content

void onContentClick();

Example

myPop.attachEvent("onContentClick", function(){
    console.log("You have clicked on the popup window");
});

Back to top