Check documentation for the latest version of dhtmlxSuite onMaximize DHTMLX Docs

onMaximize

fires when a window was maximized

void onMaximize(object win);
winobjectwindow instance

Example

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

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top