Показать сообщение отдельно
  #5 (permalink)  
Старый 01.02.2011, 18:01
VKS VKS вне форума
Профессор
Отправить личное сообщение для VKS Посмотреть профиль Найти все сообщения от VKS
 
Регистрация: 24.09.2010
Сообщений: 178

var store = new Ext.data.JsonStore({
	    totalProperty: 'total',
	    root: 'data',
	    url: gridUrl,
	    remoteSort: true,
	    scope: this,
	    fields: fields,
	    listeners: {
		exception: onLoadException.createDelegate(this),
		load       : onLoadSuccess.createDelegate(this)
	    }
	});

onLoadSuccess = function(store, records, options) {
	if (store.dataLength == 0) console.log('No records received');
	console.log('01 - Data Store listener fired (load), arguments:', arguments);
	console.log('         this:',this);
};
Ответить с цитированием