Mercurial > lada > lada-client
view app/store/Messgroessen.js @ 449:c22b24926500
Added lon/lat coordinates to varwaltungseinheiten store.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 05 Dec 2013 17:17:48 +0100 |
parents | a122424f2f0f |
children | debfcc7713e3 |
line wrap: on
line source
/** * Store for Messgroessen */ Ext.define('Lada.store.Messgroessen', { extend: 'Ext.data.Store', fields: ['messgroesseId', 'messgroesse'], sorters: [{ property: 'messgroesse', transform: function(val) { if (val) { return val.toLowerCase(); } else { return ""; }; } }], autoLoad: true, proxy: { type: 'ajax', api: { read: 'server/rest/messgroesse' }, reader: { type: 'json', root: 'data' } } });