Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ExtJS 4
ボタンのプロパティのようにパネルにボタンを (動的に) 追加する方法は? ExtJS 3 にはありpanel.addButton()ましたが、ExtJS 4 にはそのような関数はありませんでした。私も試してみpanel.addDocked()ましたが、うまくいきませんでした。
panel.addButton()
panel.addDocked()
Ext.onReady(function() { var p = Ext.create('Ext.panel.Panel', { width: 200, height: 200, renderTo: document.body, title: 'A Panel', buttons: [{ text: 'B1' }] }); setTimeout(function(){ p.down('toolbar').add({ text: 'B2' }); }, 1000); });