Here is my add item code:
myapp.cards.vehicleInfo.items.add(
new Ext.List({ ...})
)
If after this I then do:
myapp.cards.vehicleInfo.items.add(
new Ext.Panel(
{html: 'test' }
)
);
The panel with ‘test’ appears on top of my list (overlapping), rather than vertically below it. I have tried doing a componenet dolayout inbetween adding the two items.
Any ideas? If I only do one or the other of the above it works as expected but if I do both together it leads to the above behaviour.
Thanks
You should dock the panel to the bottom.
Update