Check documentation for the latest version of dhtmlxSuite onClose DHTMLX Docs

onClose

fires before a window is closed

void onClose(object win);
winobjectwindow instance

Example

myWins.attachEvent("onClose", function(win){
    // your code here
});

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top