Needing an ExtJS bug workaround - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T07:01:12Zhttp://stackoverflow.com/feeds/question/315678http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315678/needing-an-extjs-bug-workaround0Needing an ExtJS bug workaroundEric Wendelinhttp://stackoverflow.com/users/250662008-11-24T22:04:32Z2009-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 <tr> 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#3161551Answer by cwhite for Needing an ExtJS bug workaroundcwhitehttp://stackoverflow.com/users/49232008-11-25T02:16:56Z2008-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#3416540Answer by Eric Wendelin for Needing an ExtJS bug workaroundEric Wendelinhttp://stackoverflow.com/users/250662008-12-04T18:43:15Z2008-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#4823381Answer by Burke for Needing an ExtJS bug workaroundBurkehttp://stackoverflow.com/users/219802009-01-27T04:50:04Z2009-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#5217992Answer by Steve -Cutter- Blades for Needing an ExtJS bug workaroundSteve -Cutter- Bladeshttp://stackoverflow.com/users/634372009-02-06T19:27:37Z2009-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>