ExtJs IE rendering issue - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:59:01Z http://stackoverflow.com/feeds/question/1056748 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue 0 ExtJs IE rendering issue Ali Kazmi 2009-06-29T05:52:57Z 2009-06-29T14:10:03Z <p>Hi,</p> <p>Below is a simple ext js code that i can't get to work correctly in IE (works fine in Firefox, and Chrome). The problem is that while it initially renders correctly , its messed up if i try resizing the 'west' panel. Can someone please point out the issue</p> <pre><code>var viewport = new Ext.Viewport({ layout: "border", items: [{ xtype: "panel", region: "west", frame: true, collapsible: true, width: 200, baseCls: 'x-plain', collapseMode:'mini', split:true, items:[{ xtype:"panel", collapsible:true, titleCollapse:true, title:'Test1', height: 200, frame: true, border:true }] }, { xtype: "panel", region:"center" }] }) </code></pre> http://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue/1058206#1058206 0 Answer by Sergey Ilinsky for ExtJs IE rendering issue Sergey Ilinsky 2009-06-29T13:13:18Z 2009-06-29T13:13:18Z <p>Maybe <a href="http://www.extjs.com/forum/" rel="nofollow">ExtJS forum</a> can help you?</p> http://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue/1058262#1058262 2 Answer by bmoeskau for ExtJs IE rendering issue bmoeskau 2009-06-29T13:21:29Z 2009-06-29T13:21:29Z <p>Any container that contains other panels or components usually requires a layout to work correctly. Try adding layout:'fit' to the west panel and see if that helps. Looking at your code though, I'm not sure why you would need a nested panel there (unless this is just test code). The west panel should simply contain whatever content you are planning on putting into the nested panel. If the goal is to add multiple child panels to west, then you would give west a layout like 'border' or whatever makes sense.</p> http://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue/1058527#1058527 0 Answer by Thevs for ExtJs IE rendering issue Thevs 2009-06-29T14:10:03Z 2009-06-29T14:10:03Z <p>For a short hint you may try to answer the question:</p> <p>What is layout of 'center' region?</p> <p>With border layout I can see only one region, and it called 'west'. This shouldn't work as expected.</p>