Вот так?
Application.Dt_area_ = Ext.extend(Application.Dt_area, {
id: 'dt',
height: 27,
visibleEdt:true,
scope:this,
initComponent:function() {
Ext.apply(this, {
items: [{
xtype: 'button',
id:'exc1',
icon: 'img/excel.png',
align: 'right',
handler: function(){
this.onExpExcel();
}
}]
})
this.items.add({
xtype: 'button',
id:'exc1',
icon: 'img/excel.png',
align: 'right',
scope:this,
handler: function(){
this.onExpExcel();
}
});
Application.Dt_area_.superclass.initComponent.apply(this, arguments);
}
});
Тоже не работает((