Mercurial > lada > lada-client
annotate app/view/proben/Edit.js @ 41:a1be7ccd4d0c
Added datenbasis combobox
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 24 May 2013 16:37:54 +0200 |
parents | f9b6de636ad0 |
children | 5ed477590736 |
rev | line source |
---|---|
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
1 Ext.define('Lada.view.proben.Edit', { |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
2 extend: 'Ext.window.Window', |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
3 alias: 'widget.probenedit', |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
4 |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
5 title: 'Maske für §3-Proben', |
25
f964a50bfe57
Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
22
diff
changeset
|
6 width: 600, |
f964a50bfe57
Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
22
diff
changeset
|
7 height: 600, |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
8 autoShow: true, |
25
f964a50bfe57
Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
22
diff
changeset
|
9 autoScroll: true, |
f964a50bfe57
Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
22
diff
changeset
|
10 modal: true, |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
11 |
40
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
12 requires: [ |
41
a1be7ccd4d0c
Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
40
diff
changeset
|
13 'Lada.view.widgets.Datenbasis', |
40
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
14 'Lada.view.widgets.Probenart' |
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
15 ], |
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
16 |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
17 initComponent: function() { |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
18 this.items = [ |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
19 { |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
20 //Define the form |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
21 xtype: 'form', |
25
f964a50bfe57
Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
22
diff
changeset
|
22 bodyPadding: '10 10', |
f964a50bfe57
Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
22
diff
changeset
|
23 border: 0, |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
24 items: [ |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
25 // Probenangaben |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
26 { |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
27 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
28 title: 'Probenangaben', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
29 defaults: { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
30 labelWidth: 150 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
31 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
32 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
33 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
34 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
35 name: 'mstId', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
36 fieldLabel: 'Messstelle' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
37 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
38 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
39 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
40 name: 'hauptprobenNr', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
41 fieldLabel: 'Hauptprobennr.' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
42 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
43 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
44 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
45 name: 'probeId', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
46 fieldLabel: 'Probe-ID' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
47 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
48 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
49 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
50 title: 'Erweiterte Probenangaben', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
51 collapsible: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
52 collapsed: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
53 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
54 { |
41
a1be7ccd4d0c
Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
40
diff
changeset
|
55 xtype: 'datenbasis', |
a1be7ccd4d0c
Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
40
diff
changeset
|
56 id: 'datenbasis', |
a1be7ccd4d0c
Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
40
diff
changeset
|
57 editable: false, |
a1be7ccd4d0c
Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
40
diff
changeset
|
58 name: 'datenbasisId', |
a1be7ccd4d0c
Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
40
diff
changeset
|
59 fieldLabel: 'Datenbasis' |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
60 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
61 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
62 xtype: 'textfield', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
63 name: 'x5', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
64 fieldLabel: 'RB/IB' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
65 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
66 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
67 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
68 name: 'test', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
69 fieldLabel: 'Testdatensatz' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
70 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
71 { |
40
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
72 xtype: 'probenart', |
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
73 id: 'probenart', |
f9b6de636ad0
Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
38
diff
changeset
|
74 editable: false, |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
75 name: 'probenartId', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
76 fieldLabel: 'Probenart' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
77 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
78 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
79 xtype: 'textfield', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
80 name: 'x8', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
81 fieldLabel: 'Phase' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
82 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
83 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
84 xtype: 'textfield', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
85 name: 'x9', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
86 fieldLabel: 'Szenario' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
87 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
88 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
89 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
90 name: 'probenartId', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
91 fieldLabel: 'Probennehmer' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
92 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
93 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
94 xtype: 'textfield', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
95 name: 'x11', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
96 fieldLabel: 'Datensatzerzeuger' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
97 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
98 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
99 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
100 ] |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
101 }, |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
102 // Medium |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
103 { |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
104 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
105 title: 'Medium', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
106 defaults: { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
107 labelWidth: 150 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
108 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
109 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
110 { |
38
b1751458594f
Use combobox for Umweltdaten
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
25
diff
changeset
|
111 xtype: 'uwb', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
112 name: 'umwId', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
113 fieldLabel: 'Umweltbereich' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
114 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
115 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
116 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
117 name: 'media', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
118 fieldLabel: 'Medienbezeichnung' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
119 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
120 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
121 xtype: 'textfield', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
122 name: 'mediaDesk', |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
123 fieldLabel: 'Deskriptoren' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
124 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
125 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
126 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
127 title: 'Details Deskriptoren', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
128 collapsible: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
129 collapsed: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
130 defaultType: 'textfield', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
131 items: this.buildDescriptors() |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
132 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
133 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
134 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
135 // Zeit |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
136 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
137 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
138 title: 'Zeit', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
139 defaultType: 'datefield', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
140 defaults: { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
141 labelWidth: 150 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
142 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
143 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
144 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
145 fieldLabel: 'Probennahme Beginn', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
146 name: 'probeentnahmeBeginn' |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
147 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
148 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
149 fieldLabel: 'Probennahme Ende', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
150 name: 'probeentnahmeEnde' |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
151 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
152 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
153 fieldLabel: 'Sollzeit Von', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
154 name: 'solldatumBeginn' |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
155 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
156 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
157 fieldLabel: 'Sollzeit Bis', |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
158 name: 'solldatumEnde' |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
159 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
160 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
161 fieldLabel: 'Ursprungszeit', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
162 name: 'z5' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
163 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
164 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
165 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
166 // Ortsangaben |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
167 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
168 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
169 title: 'Ortsangaben', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
170 padding: '10 10', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
171 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
172 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
173 xtype: 'grid', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
174 dockedItems: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
175 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
176 xtype: 'toolbar', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
177 dock: 'top', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
178 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
179 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
180 text: 'Hinzufügen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
181 icon: 'gfx/plus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
182 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
183 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
184 text: 'Löschen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
185 icon: 'gfx/minus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
186 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
187 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
188 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
189 ], |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
190 columns: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
191 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
192 text: 'Typ' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
193 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
194 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
195 text: 'Staat' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
196 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
197 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
198 text: 'Gem-ID' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
199 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
200 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
201 text: 'Gemeindebezeichnung', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
202 flex: 1 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
203 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
204 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
205 text: 'Messpunkt', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
206 flex: 1 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
207 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
208 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
209 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
210 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
211 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
212 // Probenzusatzwerte |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
213 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
214 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
215 title: 'Probenzusatzwerte', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
216 collapsible: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
217 collapsed: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
218 padding: '10 10', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
219 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
220 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
221 xtype: 'grid', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
222 dockedItems: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
223 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
224 xtype: 'toolbar', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
225 dock: 'top', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
226 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
227 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
228 text: 'Hinzufügen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
229 icon: 'gfx/plus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
230 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
231 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
232 text: 'Löschen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
233 icon: 'gfx/minus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
234 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
235 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
236 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
237 ], |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
238 columns: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
239 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
240 text: 'PZW-ID' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
241 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
242 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
243 text: 'PZW-Größe' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
244 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
245 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
246 text: '< NWG' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
247 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
248 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
249 text: '< PZW' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
250 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
251 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
252 text: 'rel. Unsich.[%]' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
253 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
254 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
255 text: 'Maßeinheit', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
256 flex: 1 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
257 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
258 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
259 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
260 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
261 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
262 // Probenkommentar |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
263 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
264 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
265 title: 'Probenkommentare', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
266 collapsible: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
267 collapsed: true, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
268 padding: '10 10', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
269 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
270 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
271 xtype: 'grid', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
272 dockedItems: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
273 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
274 xtype: 'toolbar', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
275 dock: 'top', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
276 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
277 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
278 text: 'Hinzufügen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
279 icon: 'gfx/plus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
280 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
281 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
282 text: 'Löschen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
283 icon: 'gfx/minus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
284 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
285 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
286 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
287 ], |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
288 columns: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
289 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
290 text: 'Erzeuger' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
291 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
292 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
293 text: 'Datum' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
294 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
295 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
296 text: 'Text', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
297 flex: 1 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
298 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
299 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
300 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
301 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
302 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
303 // Messungsangaben |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
304 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
305 xtype: 'fieldset', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
306 title: 'Messungsangaben', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
307 padding: '10 10', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
308 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
309 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
310 xtype: 'grid', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
311 dockedItems: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
312 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
313 xtype: 'toolbar', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
314 dock: 'top', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
315 items: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
316 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
317 text: 'Hinzufügen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
318 icon: 'gfx/plus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
319 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
320 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
321 text: 'Löschen', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
322 icon: 'gfx/minus.gif' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
323 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
324 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
325 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
326 ], |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
327 columns: [ |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
328 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
329 text: 'Mess.ID', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
330 width: 50 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
331 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
332 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
333 text: 'NPR-Nr.', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
334 width: 50 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
335 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
336 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
337 text: 'MMT', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
338 width: 50 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
339 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
340 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
341 text: 'Messzeit' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
342 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
343 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
344 text: 'Status' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
345 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
346 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
347 text: 'OK-Flag' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
348 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
349 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
350 text: 'Anzahl Nuklide' |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
351 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
352 { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
353 text: 'Anzahl Kommentare', |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
354 flex: 1 |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
355 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
356 ] |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
357 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
358 ] |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
359 } |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
360 ] |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
361 } |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
362 ]; |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
363 |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
364 this.buttons = [ |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
365 { |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
366 text: 'Speichern', |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
367 action: 'save' |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
368 }, |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
369 { |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
370 text: 'Verwerfen', |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
371 scope: this, |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
372 handler: this.close |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
373 } |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
374 ]; |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
375 this.callParent(arguments); |
19
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
376 }, |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
377 buildDescriptors: function() { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
378 var fields = new Array(); |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
379 for ($i=0; $i<12; $i++) { |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
380 fields[$i] = {fieldLabel: 'S'+$i, name: 's'+$i}; |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
381 } |
a05625ae08b1
Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
18
diff
changeset
|
382 return fields; |
18
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
383 } |
9e1a40312bbe
Implemented a basic edit dialog. Data will be set to data/proben2.json url
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
384 }); |
22
0a4674f17bcb
Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
19
diff
changeset
|
385 |