Check documentation for the latest version of dhtmlxSuite onHide DHTMLX Docs

onHide

fires when a window was hidden

void onHide(object win);
winobjectwindow instance

Example

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

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top