日期:2014-05-16 浏览次数:20322 次
var panel = new Ext.panel.Panel({
dockedItems: [{
xtype: 'toolbar',
dock: 'top',
items: [{
text: 'Docked to the top'
}]
}]
});
var panel = new Ext.panel.Panel({
dockedItems: [{
xtype: 'toolbar',
dock: 'top',
items: [{
text: 'Docked to the top'
},{
xtype: 'toolbar',
dock: 'boottom',
items: [{
text: 'Docked to the bottom'
}]
}]
});