Hi, i have a panel and inside that panel a few other panels (with layout: 'hbox') and below that i have a list.
So in pseudo code:
Code:
Ext.Panel ({
dockedItems:[{
xtype: 'toolbar',
dock: 'bottom'
}],
items:[{
xtype:'panel'
},{
xtype:'panel'
},{
xtype:'list',
height: '100%',
scroll: 'vertical'
}]
});
So far so good. The two panels are visible and below that i have a list filled with content with scrolling set to vertical.
But when i add a docked toolbar to the bottom of the outermost Panel, then my list falls behind that toolbar. So the last item of the list always falls behind the bottom toolbar...
Is there a way to fix this??