1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| Ext.define('AM.store.Users', {
| extend: 'Ext.data.Store',
| model: 'AM.model.User',
| autoLoad: true,
|
| proxy: {
| type: 'ajax',
| api: {
| read: 'data/users.json',
| update: 'data/updateUsers.json'
| },
| reader: {
| type: 'json',
| root: 'users',
| successProperty: 'success'
| }
| }
| });
|
|