Ext.define('uas.store.Products', { extend: 'Ext.data.Store', alias: 'store.products', model: 'uas.model.Product', proxy: { type: 'ajax', url: '/api/products', reader: { type: 'json', rootProperty: 'data.list', totalProperty: 'data.total' } }, remoteSort: false, sorters: [{ property: 'company', direction: 'ASC' }], pageSize: 50, autoLoad: false });