Mercurial > lada > lada-client
view app/store/Verwaltungseinheiten.js @ 415:65688621c727
Do not autoload the large Verwaltungseinheiten store.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 09 Oct 2013 10:12:49 +0200 |
parents | 39297b8e5ba2 |
children | f9bb1ecf6462 7d80feaa4a7f |
line wrap: on
line source
/** * Store for Verwaltungseinheiten */ Ext.define('Lada.store.Verwaltungseinheiten', { extend: 'Ext.data.Store', fields: ['gemId', 'bezeichnung'], sorters: [{ property: 'bezeichnung', }], autoLoad: false, proxy: { type: 'ajax', api: { read: 'server/rest/verwaltungseinheit' }, reader: { type: 'json', root: 'data' } } });