1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| Ext.define('GeekFlicks.store.Movies', {
| extend: 'Ext.data.Store',
| autoLoad: true,
| fields: ['title', 'year'],
| proxy: {
| type: 'ajax',
| url: 'movies.php',
| reader: {
| type: 'json',
| root: 'data',
| successProperty: 'success'
| }
| }
| /*data: [{
| title: 'The Matrix',
| year: '1999'
| }, {
| title: 'Star Wars: Return of the Jedi',
| year: '1983'
| }]*/
| });
|
|