changeset 184:cfa4ed3b62b5

Show search on app startup.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 05 Jul 2013 11:18:43 +0200
parents ceb04286152a
children df5dcdff7b69
files app/view/Viewport.js
diffstat 1 files changed, 24 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/app/view/Viewport.js	Fri Jul 05 09:36:23 2013 +0200
+++ b/app/view/Viewport.js	Fri Jul 05 11:18:43 2013 +0200
@@ -9,14 +9,15 @@
 
     initComponent: function() {
         console.log('Setting up Viewport');
-        //this.initSearch();
+        this.initSearch();
 
         // Development related: 
         // Disable "initSearch" call and enable one of the following init
         // methods to get a dialog directly without the need to click through
         // the whole application.
-        this.initMessung();
         //this.initOrt();
+        //this.initMessung();
+        //this.initMesswert();
 
         this.callParent(arguments);
     },
@@ -26,6 +27,10 @@
             params: {
                 probeId: "000007575853X",
                 messungsId: "1"
+            },
+            callback: function() {
+                var model = store.data.items[0];
+                var win = Ext.create('Lada.view.messwerte.Create', {model: model});
             }
         });
     },
@@ -36,6 +41,8 @@
     initMessung: function() {
         var store = Ext.getStore('Messungen');
         var kstore = Ext.getStore('MKommentare');
+        var mstore = Ext.getStore('Messwerte');
+        var sstore = Ext.getStore('Status');
         probeId = "000007578314X";
         store.load({
             params: {
@@ -49,13 +56,23 @@
                     params: {
                         probeId: probeId,
                         messungsId: messung.get('messungsId')
-                    },
-                    callback: function() {
-                        console.log('Creating Messung window');
-                        //var messung = Ext.create('Lada.model.Messung');
-                        var win = Ext.create('Lada.view.messungen.Create', {model: messung});
                     }
                 });
+                sstore.load({
+                    params: {
+                        probeId: probeId,
+                        messungsId: messung.get('messungsId')
+                    }
+                });
+                mstore.load({
+                    params: {
+                        probeId: probeId,
+                        messungsId: messung.get('messungsId')
+                    }
+                });
+                console.log('Creating Messung window');
+                //var messung = Ext.create('Lada.model.Messung');
+                var win = Ext.create('Lada.view.messungen.Create', {model: messung});
             }
         });
     },

http://lada.wald.intevation.org