dhtmlxlayout onResizeFinish event

Hello :slight_smile:



When I use :



dhxLayout.attachEvent(‘onCollapse’, function resize(){mygrid1.setSizes();mygrid2.setSizes();mygrid3.setSizes();});

dhxLayout.attachEvent(‘onExpand’, function resize(){mygrid1.setSizes();mygrid2.setSizes();mygrid3.setSizes();});



I’ve no problem :slight_smile:



But if I use :



dhxLayout.attachEvent(‘onResizeFinish’, function resize(){mygrid1.setSizes();mygrid2.setSizes();mygrid3.setSizes();});



Nothing happens when I move manually the lines to resizing areas.

I’m using a 3E layout.

Hello

"onResizeFinish" is an external resize catcher (for example when layout is attached to window and window was resized)

if you need to catch panel resizing try “onPanelResizeFinish” event

Hello :slight_smile:

Yes it works, thanks a lot :slight_smile:

It could be useful to add onPanelResizeFinish in the section Event Handling of dhtmlxLayout’s documentation.