Check documentation for the latest version of dhtmlxSuite onBeforeResizeStart DHTMLX Docs

onBeforeResizeStart

fires before window resizing is started

boolean onBeforeResizeStart(object win);
winobjectwindow instance
boolean"return true" - allows window resizing to be started, "return false" - otherwise

Example

myWins.attachEvent("onBeforeResizeStart", function(win){
    // your code here
    return true; // allow window resizing to be started
});

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Change log

added in version 4.2

Back to top