Mercurial > lada > lada-client
view app/store/Staaten.js @ 290:fe51239321d9
Inherit from Base controller
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 09 Aug 2013 15:00:06 +0200 |
parents | 70a1b5962930 |
children | 39297b8e5ba2 |
line wrap: on
line source
Ext.define('Lada.store.Staaten', { extend: 'Ext.data.Store', sorters: [{ property: 'staat', }], model: 'Lada.model.Staat', autoLoad: true, proxy: { type: 'ajax', api: { read: 'server/rest/staat' }, reader: { type: 'json', root: 'data' } } });