Mercurial > lada > lada-client
view app/store/Messeinheit.js @ 314:65f8be677c8a
Added docstring
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 13 Aug 2013 08:05:32 +0200 |
parents | 70a1b5962930 |
children | 39297b8e5ba2 |
line wrap: on
line source
Ext.define('Lada.store.Messeinheit', { extend: 'Ext.data.Store', fields: ['mehId', 'einheit'], sorters: [{ property: 'einheit', transform: function(val) { if (val) { return val.toLowerCase(); } else { return ""; }; } }], autoLoad: true, proxy: { type: 'ajax', api: { read: 'server/rest/messeinheit' }, reader: { type: 'json', root: 'data' } } });