diff app/view/widgets/Mst.js @ 120:19eab475bbe5

Clean up part one. Reduced application to the search page. Moved some stores for comoboboxes right to the combobox
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 21 Jun 2013 16:53:39 +0200
parents 84f32c62670f
children 70a1b5962930
line wrap: on
line diff
--- a/app/view/widgets/Mst.js	Fri Jun 21 16:51:16 2013 +0200
+++ b/app/view/widgets/Mst.js	Fri Jun 21 16:53:39 2013 +0200
@@ -1,8 +1,22 @@
 // Combobox for Messtelle
+var mstStore = Ext.create('Ext.data.Store', {
+    fields: ['mstId'],
+    proxy: {
+        type: 'ajax',
+        api: {
+        read: 'server/rest/mst'
+        },
+        reader: {
+            type: 'json',
+            root: 'data'
+        }
+    }
+});
+
 Ext.define('Lada.view.widgets.Mst' ,{
         extend: 'Ext.form.ComboBox',
         alias: 'widget.mst',
-        store: 'Mst',
+        store: mstStore,
         displayField:'mstId',
         valueField: 'mstId',
         typeAhead: true,

http://lada.wald.intevation.org