Mercurial > lada > lada-client
view app/store/Staaten.js @ 422:f9bb1ecf6462
Removed trailing commas.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Thu, 07 Nov 2013 12:01:35 +0100 |
parents | 39297b8e5ba2 |
children | debfcc7713e3 |
line wrap: on
line source
/** * Store for Staaten */ 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' } } });