Check documentation for the latest version of dhtmlxSuite onMinimize DHTMLX Docs

onMinimize

fires when a window was minimized

void onMinimize(object win);
winobjectwindow instance

Example

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

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top