Extjsウィンドウのbbar(ツールバー)を動的に更新したいのですが、どうすれば機能するのかわかりません。
サンプルコード:
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();
誰もが知っている、私を助けてください。
ありがとうございました!