Categories | Question details Back To List | ||
dhtmlxlayout onResizeFinish event Hello :) 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 :) 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. Answer posted by Support on Oct 13, 2008 02:22 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 Answer posted by dactar on Oct 13, 2008 14:53 |