есть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();
}
}
}