| 12345678910111213141516171819202122 |
- Ext.define('uas.store.Companies', {
- extend: 'Ext.data.Store',
- alias: 'store.companies',
- model: 'uas.model.Company',
-
- autoLoad: true,
- pageSize: null,
-
- proxy: {
- type: 'ajax',
- url: '/uas/Company',
- reader: {
- type: 'json',
- rootProperty: 'data',
- // Do not attempt to load orders inline.
- // They are loaded through the proxy
- implicitIncludes: false
- }
- }
- });
|