]> git.proxmox.com Git - extjs.git/blob - extjs/build/examples/classic/MVC/pandora/app/model/Song.js
add extjs 6.0.1 sources
[extjs.git] / extjs / build / examples / classic / MVC / pandora / app / model / Song.js
1 Ext.define('Pandora.model.Song', {
2 extend: 'Ext.data.Model',
3 fields: ['id', 'name', 'artist', 'album', 'played_date', 'station'],
4
5 proxy: {
6 type: 'ajax',
7 url: 'data/recentsongs.json',
8 reader: {
9 type: 'json',
10 rootProperty: 'results'
11 }
12 }
13 });