Is There onResize Event for dhtmlx Window object?

Is There onResize Event for dhtmlx Window object?

There is onResizeFinish event:

dhxWins = new dhtmlXWindows();

dhxWins.attachEvent(“onResizeFinish”,function(win){…});

or

win.attachEvent(“onResizeFinish”,function(win){…});

Thank you!

yeah if you look at the code, its part of this._stopMove function.

win.callEvent( “onResizeFinish”, [win] );

that would be the actually line that calls that event handler.

Wat the win object contains