Width issue with Ext.Panel bbar in IE 6 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T14:39:17Z http://stackoverflow.com/feeds/question/90181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/90181/width-issue-with-ext-panel-bbar-in-ie-6 1 Width issue with Ext.Panel bbar in IE 6 Matt Sheppard 2008-09-18T05:06:52Z 2008-09-19T17:09:05Z <p>I've just run into a display glitch in IE6 with the ExtJS framework. - Hopefully someone can point me in the right direction.</p> <p>In the following example, the bbar for the panel is displayed 2ems narrower than the panel it is attached to (it's left aligned) in IE6, where as in Firefox it is displayed as the same width as the panel.</p> <p>Can anyone suggest how to fix this?</p> <p>I seem to be able to work around either by specifying the width of the panel in ems or the padding in pixels, but I assume it would be expected to work as I have it below.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;link rel="stylesheet" type="text/css" href="ext/resources/css/ext-all.css"/&gt; &lt;script type="text/javascript" src="ext/ext-base.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="ext/ext-all-debug.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; Ext.onReady(function(){ var main = new Ext.Panel({ renderTo: 'content', bodyStyle: 'padding: 1em;', width: 500, html: "Alignment issue in IE - The bbar's width is 2ems less than the main panel in IE6.", bbar: [ "-&gt;", {id: "continue", text: 'Continue'} ] }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="content"&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/90181/width-issue-with-ext-panel-bbar-in-ie-6/94197#94197 1 Answer by Thevs for Width issue with Ext.Panel bbar in IE 6 Thevs 2008-09-18T16:32:24Z 2008-09-18T16:32:24Z <p>Maybe you should try to force the width of the bbar:</p> <p>main.getBottomToolbar().setWidth(500);</p> <p>right after Panel creation?</p> <p>But I think the problem is that bbar is rendered into inner div of the panel, so different browsers interpret outer padding differently.</p> <p>Also you can try to set padding of the bbar to -1em.</p> http://stackoverflow.com/questions/90181/width-issue-with-ext-panel-bbar-in-ie-6/103756#103756 1 Answer by tsg for Width issue with Ext.Panel bbar in IE 6 tsg 2008-09-19T17:09:05Z 2008-09-19T17:09:05Z <p>The problem comes from the custom bodyStyle padding. It makes the panel content larger, but not the toolbar.</p> <p>One possible solution is to further nest an Ext panel, like:</p> <pre><code> var main = new Ext.Panel({ renderTo: 'content', width: 500, items: { bodyStyle: 'padding: 1em;', border: false, html: "Now alignment is fine." }, bbar: [ "-&gt;", {id: "continue", text: 'Continue'} ] }); </code></pre> <p>The border: false is needed to avoid double bordering.</p>