]> git.proxmox.com Git - extjs.git/blame - extjs/examples/modern/oreilly/app/store/Videos.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / modern / oreilly / app / store / Videos.js
CommitLineData
6527f429
DM
1Ext.define('Oreilly.store.Videos', {\r
2 extend: 'Ext.data.Store',\r
3\r
4 config: {\r
5 fields: ['thumbnail', 'title'],\r
6\r
7 proxy: {\r
8 type: 'jsonp',\r
9\r
10 reader: {\r
11 type: 'json',\r
12 rootProperty: 'data.items',\r
13 record: 'video'\r
14 }\r
15 }\r
16 }\r
17});\r