123456789101112131415161718192021 |
- Ext.define('uas.store.Companies', {
- extend: 'Ext.data.Store',
- alias: 'store.companies',
- model: 'uas.model.Company',
-
- autoLoad: false,
- pageSize: null,
- remoteSort: true,
-
- proxy: {
- type: 'ajax',
- url: '/api/comanies',
- reader: {
- type: 'json',
- rootProperty: 'data.list',
- totalProperty: 'data.total',
- }
- }
- });
|