Mercurial > lada > lada-client
diff app/store/Mst.js @ 35:3f801444b8d5
Added store for Messstelle. Fill Messstellen widget on search page
dynamically.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Thu, 23 May 2013 16:09:05 +0200 |
parents | |
children | ab067fdb91b5 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/store/Mst.js Thu May 23 16:09:05 2013 +0200 @@ -0,0 +1,13 @@ +Ext.define('Lada.store.Mst', { + extend: 'Ext.data.Store', + fields: ['mstId'], + proxy: { + type: 'ajax', + api: { + read: 'server/rest/mst' + }, + reader: { + type: 'json' + } + } +});