Показать сообщение отдельно
  #3 (permalink)  
Старый 06.07.2010, 16:38
Аспирант
Отправить личное сообщение для serega063 Посмотреть профиль Найти все сообщения от serega063
 
Регистрация: 29.05.2010
Сообщений: 33

Вот так?
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);
				} 
	
});

Тоже не работает((
Ответить с цитированием