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