ExtJs IE rendering issue - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T14:59:01Zhttp://stackoverflow.com/feeds/question/1056748http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue0ExtJs IE rendering issueAli Kazmi2009-06-29T05:52:57Z2009-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#10582060Answer by Sergey Ilinsky for ExtJs IE rendering issueSergey Ilinsky2009-06-29T13:13:18Z2009-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#10582622Answer by bmoeskau for ExtJs IE rendering issuebmoeskau2009-06-29T13:21:29Z2009-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#10585270Answer by Thevs for ExtJs IE rendering issueThevs2009-06-29T14:10:03Z2009-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>