我想动态更新 Extjs 窗口 bbar(toolbar),但我不知道我应该如何让它工作,
示例代码:
var myWin = Ext.create('Ext.window.Window', {
modal: true,
layout: 'fit',
items: {
// panel
},
bbar: ['->', {
xtype: 'buttongroup',
items: [{
text: 'Cancel',
handler: function () {
invoicingWin.destroy();
}
}]
}, {
xtype: 'buttongroup',
items: [{
text: 'Continue',
handler: function () {
var test = new Ext.Toolbar({
dock: 'bottom',
items: ['->', { html: "Close"}]
});
// !! I want to replace this window bbar to test(toolbar)
} // btn handler
}]// items
}]
}).show();
有谁知道,请帮帮我。
谢谢!