Check documentation for the latest version of dhtmlxSuite onResize DHTMLX Docs

onResize

fires when layout resizes

void onResize();

Deprecated

from version 4.0, new usage:

myLayout.attachEvent("onResizeFinish", function(){
    // your code here
});
Details

this event was called when layout was attached to dhtmlxWindow and only after the dhtmlxWindow was resized. In all other cases when something could affect the layout's external size, the event onResizeFinish was used

Back to top