Needing an ExtJS bug workaround - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T07:01:12Z http://stackoverflow.com/feeds/question/315678 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315678/needing-an-extjs-bug-workaround 0 Needing an ExtJS bug workaround Eric Wendelin http://stackoverflow.com/users/25066 2008-11-24T22:04:32Z 2009-02-06T19:27:37Z <p>I have a web application that uses Ext-JS 2.2. In a certain component, we have an empty toolbar that we are trying to add a button to using </p> <pre><code>myPanel.getTopToolbar().insertButton(0, [...array of buttons...]); </code></pre> <p>However, in IE6/7 this fails because of lines 20241-20242 in ext-all-debug.js:</p> <pre><code>var td = document.createElement("td"); this.tr.insertBefore(td, this.tr.childNodes[index]); </code></pre> <p>Since "this.tr.childNodes([0])" does not yet exist in IE, this fails with "Invalid argument".</p> <p>THE REAL QUESTION: Can I, using CSS similar to the below add a child to every toolbar &lt;tr&gt; so that this.tr.childNodes[0] is found:</p> <pre><code>div.x-toolbar tr:after { content: " "; } </code></pre> <p>I totally realize this is a hack, but for legal reasons I cannot change any Javascript, not even to add an empty button ({}) to each toolbar. Major kudos to anyone that can figure this out.</p> http://stackoverflow.com/questions/315678/needing-an-extjs-bug-workaround/316155#316155 1 Answer by cwhite for Needing an ExtJS bug workaround cwhite http://stackoverflow.com/users/4923 2008-11-25T02:16:56Z 2008-11-25T02:16:56Z <p>If all you are doing is adding to a empty panel </p> <pre><code> myPanel.getTopToolbar().add(buttons etc); </code></pre> <p>Or </p> <pre><code> myPanel.getTopToolbar().addButton(..); </code></pre> <p>Either should work. It looks like purpose of insertButton is for putting a button within a non-empty toolbar.</p> http://stackoverflow.com/questions/315678/needing-an-extjs-bug-workaround/341654#341654 0 Answer by Eric Wendelin for Needing an ExtJS bug workaround Eric Wendelin http://stackoverflow.com/users/25066 2008-12-04T18:43:15Z 2008-12-04T18:43:15Z <p>I didn't think there was a CSS-only solution.</p> <p>For the record, I ended up injecting javascript into the page that overrides the Ext.Toolbar prototype for the insertButton() function to check for the existance of "this.tr.childNodes([0])" and default to addButton() if it didn't exist. </p> http://stackoverflow.com/questions/315678/needing-an-extjs-bug-workaround/482338#482338 1 Answer by Burke for Needing an ExtJS bug workaround Burke http://stackoverflow.com/users/21980 2009-01-27T04:50:04Z 2009-01-27T04:50:04Z <p>Did you look into adding the button after the panel has been rendered? Maybe something like:</p> <pre><code>myPanel.on('render', function() { this.getTopToolbar().insertButton(0, [...array of buttons...]); }, true); </code></pre> http://stackoverflow.com/questions/315678/needing-an-extjs-bug-workaround/521799#521799 2 Answer by Steve -Cutter- Blades for Needing an ExtJS bug workaround Steve -Cutter- Blades http://stackoverflow.com/users/63437 2009-02-06T19:27:37Z 2009-02-06T19:27:37Z <p>What I've had to do in the past was include an empty toolbar in my element config:</p> <p>tbar:[]</p> <p>Then (and only after the element has completely rendered) use the .add() method for injecting buttons.</p> <p>Order of events will get you every time. It takes a while to get a handle on it.</p>