So I want to add a component to the bottom of a panel. Normally you would just do the following:
Ext.getCmp('xxxx').add({....});
and that will add to the bottom, but for some reason when you add itemId it all goes to hell. Here is a working example: http://jsfiddle.net/Qsfgh/ Notice how the 'higher' id comes before the lower one. (You can open your console and look at the HTML if you want to verify) Even when I use an 'insert' and I insert it at the very end it still puts it at the beginning. How do I get around that?