]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/oreilly/app/store/SpeakerSessions.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / oreilly / app / store / SpeakerSessions.js
1 Ext.define('Oreilly.store.SpeakerSessions', {
2 extend: 'Ext.data.Store',
3
4 config: {
5 model: 'Oreilly.model.Session',
6
7 sorters: [
8 {
9 property: 'time',
10 direction: 'ASC'
11 }
12 ]
13 }
14 });