IT:AD:Sencha Touch:Reference:Layout
Docked Items
ST1.1 DockedItems
Programmatically add a docked Item:
thePanel.addDocked(aToolBar);
Reference a docked Item:
var theToolBar = thePanel.getDockedItems()[0];
theToolBar.setTitle('Pressed!');
To remove:
thePanel.removeDocked(aToolBar);