Тема: Ext.application
Показать сообщение отдельно
  #5 (permalink)  
Старый 30.01.2013, 12:06
Аспирант
Отправить личное сообщение для adamenko.artem Посмотреть профиль Найти все сообщения от adamenko.artem
 
Регистрация: 29.01.2013
Сообщений: 49

естьExt.window.window
там listener destroy
destroy: function() {
                app.updateTreeStores();
            },


а вот Ext.application
launch: function(){
        var app = this;
        //Локализация разделителей тысяч и десятичной части
        Ext.util.Format.decimalSeparator = ',';
        Ext.util.Format.thousandSeparator = ' ';
        
        this.currentUserStore.load({
            scope   : this,
            callback: this.authorize
        });
    },
    updateTreeStores: function (){
	var storeArray = new Array('objectsTreeStore', 'priceObjectsTreeStore');
		for(var i = 0; i < storeArray.length; i++){
    			var store = Ext.getStore(storeArray[i]);
			if (store && store.isStore){
				store.load();
			}
		}
	}
Ответить с цитированием