Показать сообщение отдельно
  #2 (permalink)  
Старый 01.03.2012, 11:55
Аватар для Ex_Soft
Профессор
Отправить личное сообщение для Ex_Soft Посмотреть профиль Найти все сообщения от Ex_Soft
 
Регистрация: 19.12.2009
Сообщений: 164

Ext.define('App.store', {
    extend: 'Ext.data.Store',
	model: 'App.model',

	sorters: [{
            property: 'date_start',
            direction: 'ASC'
        }],
	remoteSort: true,
	
	autoLoad: true,
	
	proxy: {
        type: 'ajax',
        url: 'cl.php',
        reader: {
            type: 'json',
            root: 'pens',
			totalProperty: 'total',
            successProperty: 'success',
			idProperty: 'id'
        },
*!*
        listeners: {
            exception: function (proxy, response, operation, eOpts) {
                if (window.console && console.log)
                    console.log("Proxy.Exception (%o)", arguments);
            }
        }
*/!*
    }
});

???
__________________
"Helo, word!" - 17 errors 56 warnings
Ответить с цитированием