| 123456789101112131415161718 |
- Ext.define('uas.store.BigData', {
- extend: 'Ext.data.Store',
- alias: 'store.big-data',
- model: 'uas.model.Employee',
- groupField: 'department',
- proxy: {
- type: 'ajax',
- limitParam: null,
- url: '/uas/BigData',
- reader: {
- type: 'json'
- }
- },
- autoLoad: true
- });
|