87,991
社区成员
发帖
与我相关
我的任务
分享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'
}]
}]
});