annotate app/view/Viewport.js @ 433:f894b9ab99fa

Added tag 0.9 for changeset f4185f2d1a7c
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 08 Nov 2013 12:55:35 +0100
parents c95c9831675c
children debfcc7713e3
rev   line source
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
1 /**
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
2 * Viewport for the Lada-Client
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
3 *
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
4 * The viewport initialises the graphical elements of the application. For
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
5 * debugging it is possible to initialize other components directly see the
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
6 * initComponent function.
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
7 */
12
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
8 Ext.define('Lada.view.Viewport' ,{
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
9 extend: 'Ext.container.Viewport',
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
10 requires: [
259
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
11 'Lada.store.Info',
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
12 'Lada.view.search.List',
369
cebed9ef8293 Dynamically add configured search filters. Send needed values to the server.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 357
diff changeset
13 'Lada.view.proben.List'
12
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
14 ],
425
2ff236e5d2d0 Added layout to the Viewport (root panel) to fix some layout issues.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 412
diff changeset
15 layout: 'fit',
12
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
16 initComponent: function() {
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
17 console.log('Setting up Viewport');
357
94884cd8f8c0 Added logic to upload a file to the server.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 355
diff changeset
18 this.initSearch();
173
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
19
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
20 // Development related:
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
21 // Disable "initSearch" call and enable one of the following init
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
22 // methods to get a dialog directly without the need to click through
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
23 // the whole application.
230
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
24 //this.initProbe();
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
25 //this.initOrt();
184
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
26 //this.initMessung();
357
94884cd8f8c0 Added logic to upload a file to the server.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 355
diff changeset
27 //this.initMesswert();
173
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
28
357
94884cd8f8c0 Added logic to upload a file to the server.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 355
diff changeset
29 this.setInfo();
173
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
30 this.callParent(arguments);
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
31 },
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
32 /**
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
33 * Set some information about user, client and server version in the top
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
34 * of the application window. The data will be fetched from the server.
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
35 */
259
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
36 setInfo: function() {
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
37 var store = Ext.create('Lada.store.Info');
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
38 store.load({
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
39 callback: function(a,b,c) {
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
40 var info = store.data.items[0];
262
1626279daadb Set client version
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 259
diff changeset
41 var clientVersion = "r261 (2013-07-26)";
259
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
42 var user = info.get('user');
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
43 var groups = info.get('groups');
383
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
44 var groupinfo = Ext.getCmp('groupinfo');
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
45 var userinfo = Ext.getCmp('userinfo');
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
46 userinfo.update(user);
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
47 groupinfo.update(groups);
259
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
48 console.log(info);
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
49 }
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
50 });
d19ad9d28de5 Added code to show general information about the application in the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 250
diff changeset
51 },
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
52 /**
412
cf4b6e93f956 Typo fixed.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 393
diff changeset
53 * Function to initialize the edit window for a particular probe directly
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
54 * @private
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
55 */
230
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
56 initProbe: function() {
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
57 var store = Ext.getStore('Proben');
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
58 store.load({
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
59 params: {
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
60 probeId: "000007575943X"
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
61 },
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
62 callback: function() {
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
63 var mstore = Ext.getStore('Messungen');
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
64 mstore.load({
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
65 params: {
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
66 probeId: "000007575943X"
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
67 }
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
68 });
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
69 var model = store.data.items[0];
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
70 var win = Ext.create('Lada.view.proben.Edit', {model: model});
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
71 }
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
72 });
7bea6974fb5b Added function to directly initialize the probenendit form.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 214
diff changeset
73 },
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
74 /**
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
75 * Function to initialize the edit window for a priticular messwert directly
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
76 * @private
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
77 */
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
78 initMesswert: function() {
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
79 var store = Ext.getStore('Messwerte');
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
80 store.load({
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
81 params: {
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
82 probeId: "000007575853X",
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
83 messungsId: "1"
184
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
84 },
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
85 callback: function() {
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
86 var model = store.data.items[0];
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
87 var win = Ext.create('Lada.view.messwerte.Create', {model: model});
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
88 }
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
89 });
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
90 },
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
91 /**
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
92 * Function to initialize the edit window for a priticular ort directly
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
93 * @private
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
94 */
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
95 initOrt: function() {
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
96 var ort = Ext.create('Lada.model.Ort');
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
97 var win = Ext.create('Lada.view.orte.Create', {model: ort});
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
98 },
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
99 /**
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
100 * Function to initialize the edit window for a priticular ort directly
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
101 * @private
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
102 */
173
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
103 initMessung: function() {
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
104 var store = Ext.getStore('Messungen');
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
105 var kstore = Ext.getStore('MKommentare');
184
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
106 var mstore = Ext.getStore('Messwerte');
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
107 var sstore = Ext.getStore('Status');
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
108 probeId = "000007578314X";
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
109 store.load({
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
110 params: {
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
111 probeId: probeId
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
112 },
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
113 callback: function () {
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
114 console.log(store);
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
115 var messung = store.data.items[0];
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
116 console.log(store.data.items[0]);
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
117 kstore.load({
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
118 params: {
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
119 probeId: probeId,
214
38e84783785f Fix getting messerte, status and kommentare in debug mode
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 184
diff changeset
120 messungsId: messung.get('id').messungsId
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
121 }
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
122 });
184
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
123 sstore.load({
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
124 params: {
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
125 probeId: probeId,
214
38e84783785f Fix getting messerte, status and kommentare in debug mode
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 184
diff changeset
126 messungsId: messung.get('id').messungsId
184
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
127 }
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
128 });
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
129 mstore.load({
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
130 params: {
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
131 probeId: probeId,
214
38e84783785f Fix getting messerte, status and kommentare in debug mode
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 184
diff changeset
132 messungsId: messung.get('id').messungsId
184
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
133 }
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
134 });
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
135 console.log('Creating Messung window');
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
136 //var messung = Ext.create('Lada.model.Messung');
cfa4ed3b62b5 Show search on app startup.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 180
diff changeset
137 var win = Ext.create('Lada.view.messungen.Create', {model: messung});
180
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
138 }
133df8f75a12 Added missing file.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 173
diff changeset
139 });
173
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
140 },
341
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
141 /**
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
142 * Function to initialize the search window. This is the default method
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
143 * called by the {@link Lada.view.Viewport#initComponent initComponent} method.
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
144 * @private
6eaa741b396b Added documentation.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 262
diff changeset
145 */
173
1a11ae666f11 Added options to open dialogs directly without the need to click through the
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 148
diff changeset
146 initSearch: function() {
383
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
147 this.items = [{
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
148 xtype: 'panel',
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
149 title: '<center>Probenauswahlmaske</center>',
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
150 bodyPadding: '10 10',
425
2ff236e5d2d0 Added layout to the Viewport (root panel) to fix some layout issues.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 412
diff changeset
151 layout: {
2ff236e5d2d0 Added layout to the Viewport (root panel) to fix some layout issues.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 412
diff changeset
152 type: 'vbox',
2ff236e5d2d0 Added layout to the Viewport (root panel) to fix some layout issues.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 412
diff changeset
153 align: 'stretch'
2ff236e5d2d0 Added layout to the Viewport (root panel) to fix some layout issues.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 412
diff changeset
154 },
383
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
155 dockedItems: [
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
156 {
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
157 xtype: "toolbar",
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
158 dock: "top",
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
159 items: [{
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
160 xtype: "splitbutton",
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
161 text: "Info",
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
162 menu: {
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
163 items: [{
386
00bf2d4f3bd1 Added about dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 384
diff changeset
164 id: 'AboutBtn',
383
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
165 text: "About"
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
166 }]
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
167 }
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
168 },
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
169 "->",
391
d1bb925bb5f5 Use the new icons in list views and status bar.
Raimund Renkert <rrenkert@intevation.de>
parents: 384
diff changeset
170 {xtype: 'box', autoEl: {tag: 'img', src:'gfx/user-identity.png'}},
384
ea424aacd07f Added user icons to the toolbar.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 383
diff changeset
171 {xtype: "tbtext", id:"userinfo", text:""},
391
d1bb925bb5f5 Use the new icons in list views and status bar.
Raimund Renkert <rrenkert@intevation.de>
parents: 384
diff changeset
172 {xtype: 'box', autoEl: {tag: 'img', src:'gfx/network-workgroup.png'}},
384
ea424aacd07f Added user icons to the toolbar.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 383
diff changeset
173 {xtype: "tbtext", id:"groupinfo", text:""}
383
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
174 ]
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
175 }
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
176 ],
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
177 items: [
31
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
178 // Auswahl einer Abfrage.
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
179 {
28
4d60b9ebce15 Renamed sql modul into search. Further display The query selection as Combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 25
diff changeset
180 xtype: 'queryselector',
369
cebed9ef8293 Dynamically add configured search filters. Send needed values to the server.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 357
diff changeset
181 id: 'queryselector',
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
182 margin: '0 0 10 0'
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
183 },
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
184 // Variables settings for the current selected sql statement.
31
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
185 {
245
9a2c04b19874 Put all available search filters to the viewport. They are later hidden and
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 230
diff changeset
186 xtype: 'fieldset',
9a2c04b19874 Put all available search filters to the viewport. They are later hidden and
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 230
diff changeset
187 id: 'queryfilters',
9a2c04b19874 Put all available search filters to the viewport. They are later hidden and
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 230
diff changeset
188 title: 'Variablenbelegung',
9a2c04b19874 Put all available search filters to the viewport. They are later hidden and
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 230
diff changeset
189 hidden: true,
369
cebed9ef8293 Dynamically add configured search filters. Send needed values to the server.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 357
diff changeset
190 items: []
31
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
191 },
120
19eab475bbe5 Clean up part one. Reduced application to the search page. Moved some stores for comoboboxes right to the combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 39
diff changeset
192 // Buttons to trigger the search.
31
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
193 {
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
194 id: 'SearchBtnPanel',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
195 xtype: 'panel',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
196 border: false,
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
197 margin: '0 0 10 0',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
198 items: [
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
199 {
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
200 id: 'SearchBtn',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
201 text: 'Suchen',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
202 xtype: 'button',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
203 margin: '0 10 0 0'
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
204 },
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
205 {
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
206 id: 'ResetBtn',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
207 text: 'Zurücksetzen',
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
208 xtype: 'button'
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
209 }
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
210 ],
148
ed7fb4fa32dc Do not hide search buttons and the resultlist on initial load.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 120
diff changeset
211 hidden: false
31
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
212
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
213 },
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
214 // Resultlist for the query.
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
215 {
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
216 id: 'result',
426
c95c9831675c Set flex to true for the probenlist. Remove minheigt and maxheigt from panel
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 425
diff changeset
217 flex: 1,
31
897e3100c6da Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 28
diff changeset
218 xtype: 'probenlist',
148
ed7fb4fa32dc Do not hide search buttons and the resultlist on initial load.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 120
diff changeset
219 hidden: false
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
220 }
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 12
diff changeset
221 ]
383
fe8d6e1b08ff Added toolbar to the mainwindow.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 369
diff changeset
222 }];
12
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
223 }
cdcaf38eab45 Added Viewport class which should be used to setup the viewport. Currently not
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
224 });

http://lada.wald.intevation.org