Создаю класс.
MyWindow = Ext.extend(Ext.Window,{
initComponent: function(){
var config = {
width: 500,
height: 300
};
Ext.apply(this, Ext.apply(this.initialConfig, config));
MyWindow.superclass.initComponent.apply(this, arguments);
},
buttons: [{text: 'First Button'},
{text: 'Second Button'}
]
});
Дальше при создании объекта этого класса как мне добавить третью кнопку в создаваемое окно?
Ext.onReady(function() {
win = new MyWindow({
buttons: ?
});
win.show();
});