annotate app/view/proben/Edit.js @ 47:e6d5177a9f6f

Set size of the edit window relative to the available space in the browser.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Mon, 27 May 2013 09:53:03 +0200
parents 39f5f1529847
children 792c34b3f5a9
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',
47
e6d5177a9f6f Set size of the edit window relative to the available space in the browser.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 46
diff changeset
6 // Make size of the dialog dependend of the available space.
e6d5177a9f6f Set size of the edit window relative to the available space in the browser.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 46
diff changeset
7 // TODO: Handle resizing the browser window.
e6d5177a9f6f Set size of the edit window relative to the available space in the browser.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 46
diff changeset
8 width: Ext.getBody().getViewSize().width - 30,
e6d5177a9f6f Set size of the edit window relative to the available space in the browser.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 46
diff changeset
9 height: Ext.getBody().getViewSize().height - 30,
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
10 autoShow: true,
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 22
diff changeset
11 autoScroll: true,
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 22
diff changeset
12 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
13
40
f9b6de636ad0 Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 38
diff changeset
14 requires: [
42
5ed477590736 Added missiong code for uwb.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 41
diff changeset
15 'Lada.view.widgets.Uwb',
41
a1be7ccd4d0c Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 40
diff changeset
16 'Lada.view.widgets.Datenbasis',
46
39f5f1529847 Added combotbox for Betriebsart.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 45
diff changeset
17 'Lada.view.widgets.Probenart',
39f5f1529847 Added combotbox for Betriebsart.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 45
diff changeset
18 'Lada.view.widgets.Betriebsart'
40
f9b6de636ad0 Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 38
diff changeset
19 ],
f9b6de636ad0 Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 38
diff changeset
20
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 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
22 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
23 {
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
24 //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
25 xtype: 'form',
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 22
diff changeset
26 bodyPadding: '10 10',
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 22
diff changeset
27 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
28 items: [
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
29 // 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
30 {
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
31 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
32 title: 'Probenangaben',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
33 defaults: {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
34 labelWidth: 150
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
35 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
36 items: [
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 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
39 name: 'mstId',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
40 fieldLabel: 'Messstelle'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
41 },
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 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
44 name: 'hauptprobenNr',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
45 fieldLabel: 'Hauptprobennr.'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
46 },
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 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
49 name: 'probeId',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
50 fieldLabel: 'Probe-ID'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
51 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
52 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
53 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
54 title: 'Erweiterte Probenangaben',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
55 collapsible: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
56 collapsed: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
57 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
58 {
41
a1be7ccd4d0c Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 40
diff changeset
59 xtype: 'datenbasis',
a1be7ccd4d0c Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 40
diff changeset
60 id: 'datenbasis',
a1be7ccd4d0c Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 40
diff changeset
61 editable: false,
a1be7ccd4d0c Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 40
diff changeset
62 name: 'datenbasisId',
a1be7ccd4d0c Added datenbasis combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 40
diff changeset
63 fieldLabel: 'Datenbasis'
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
64 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
65 {
46
39f5f1529847 Added combotbox for Betriebsart.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 45
diff changeset
66 xtype: 'betriebsart',
39f5f1529847 Added combotbox for Betriebsart.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 45
diff changeset
67 name: 'baId',
39f5f1529847 Added combotbox for Betriebsart.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 45
diff changeset
68 fieldLabel: 'Betriebsart'
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
69 },
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 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
72 name: 'test',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
73 fieldLabel: 'Testdatensatz'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
74 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
75 {
40
f9b6de636ad0 Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 38
diff changeset
76 xtype: 'probenart',
f9b6de636ad0 Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 38
diff changeset
77 id: 'probenart',
f9b6de636ad0 Added probenart combobox
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 38
diff changeset
78 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
79 name: 'probenartId',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
80 fieldLabel: 'Probenart'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
81 },
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 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
84 name: 'probenartId',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
85 fieldLabel: 'Probennehmer'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
86 },
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 xtype: 'textfield',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
89 name: 'x11',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
90 fieldLabel: 'Datensatzerzeuger'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
91 }
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 ]
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
95 },
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
96 // 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
97 {
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
98 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
99 title: 'Medium',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
100 defaults: {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
101 labelWidth: 150
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
102 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
103 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
104 {
38
b1751458594f Use combobox for Umweltdaten
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 25
diff changeset
105 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
106 name: 'umwId',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
107 fieldLabel: 'Umweltbereich'
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 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
110 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
111 name: 'media',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
112 fieldLabel: 'Medienbezeichnung'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
113 },
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 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
116 name: 'mediaDesk',
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
117 fieldLabel: 'Deskriptoren'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
118 },
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 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
121 title: 'Details Deskriptoren',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
122 collapsible: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
123 collapsed: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
124 defaultType: 'textfield',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
125 items: this.buildDescriptors()
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
126 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
127 ]
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
128 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
129 // Zeit
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
130 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
131 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
132 title: 'Zeit',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
133 defaultType: 'datefield',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
134 defaults: {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
135 labelWidth: 150
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 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
138 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
139 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
140 name: 'probeentnahmeBeginn'
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
141 },
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 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
144 name: 'probeentnahmeEnde'
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
145 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
146 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
147 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
148 name: 'solldatumBeginn'
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
149 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
150 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
151 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
152 name: 'solldatumEnde'
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
153 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
154 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
155 fieldLabel: 'Ursprungszeit',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
156 name: 'z5'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
157 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
158 ]
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 // Ortsangaben
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
161 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
162 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
163 title: 'Ortsangaben',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
164 padding: '10 10',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
165 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
166 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
167 xtype: 'grid',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
168 dockedItems: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
169 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
170 xtype: 'toolbar',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
171 dock: 'top',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
172 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
173 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
174 text: 'Hinzufügen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
175 icon: 'gfx/plus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
176 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
177 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
178 text: 'Löschen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
179 icon: 'gfx/minus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
180 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
181 ]
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 columns: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
185 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
186 text: 'Typ'
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 text: 'Staat'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
190 },
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: 'Gem-ID'
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: 'Gemeindebezeichnung',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
196 flex: 1
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 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
199 text: 'Messpunkt',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
200 flex: 1
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
201 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
202 ]
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 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
206 // Probenzusatzwerte
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 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
209 title: 'Probenzusatzwerte',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
210 collapsible: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
211 collapsed: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
212 padding: '10 10',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
213 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
214 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
215 xtype: 'grid',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
216 dockedItems: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
217 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
218 xtype: 'toolbar',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
219 dock: 'top',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
220 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
221 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
222 text: 'Hinzufügen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
223 icon: 'gfx/plus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
224 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
225 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
226 text: 'Löschen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
227 icon: 'gfx/minus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
228 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
229 ]
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 columns: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
233 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
234 text: 'PZW-ID'
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 text: 'PZW-Größe'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
238 },
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: '&lt; NWG'
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: '&lt; PZW'
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: 'rel. Unsich.[%]'
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: 'Maßeinheit',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
250 flex: 1
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 ]
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 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
256 // Probenkommentar
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 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
259 title: 'Probenkommentare',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
260 collapsible: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
261 collapsed: true,
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
262 padding: '10 10',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
263 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
264 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
265 xtype: 'grid',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
266 dockedItems: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
267 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
268 xtype: 'toolbar',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
269 dock: 'top',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
270 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
271 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
272 text: 'Hinzufügen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
273 icon: 'gfx/plus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
274 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
275 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
276 text: 'Löschen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
277 icon: 'gfx/minus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
278 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
279 ]
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 columns: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
283 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
284 text: 'Erzeuger'
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 text: 'Datum'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
288 },
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: 'Text',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
291 flex: 1
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 ]
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 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
297 // Messungsangaben
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 xtype: 'fieldset',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
300 title: 'Messungsangaben',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
301 padding: '10 10',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
302 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
303 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
304 xtype: 'grid',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
305 dockedItems: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
306 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
307 xtype: 'toolbar',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
308 dock: 'top',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
309 items: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
310 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
311 text: 'Hinzufügen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
312 icon: 'gfx/plus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
313 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
314 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
315 text: 'Löschen',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
316 icon: 'gfx/minus.gif'
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
317 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
318 ]
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 columns: [
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
322 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
323 text: 'Mess.ID',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
324 width: 50
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 text: 'NPR-Nr.',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
328 width: 50
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
329 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
330 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
331 text: 'MMT',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
332 width: 50
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
333 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
334 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
335 text: 'Messzeit'
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 {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
338 text: 'Status'
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: 'OK-Flag'
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: 'Anzahl Nuklide'
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: 'Anzahl Kommentare',
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
348 flex: 1
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 ]
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 ]
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
353 }
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
354 ]
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
355 }
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
356 ];
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
357
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
358 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
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 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
361 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
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 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
365 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
366 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
367 }
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 this.callParent(arguments);
19
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
370 },
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
371 buildDescriptors: function() {
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
372 var fields = new Array();
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
373 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
374 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
375 }
a05625ae08b1 Added more fields to the Edit-Dialog.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 18
diff changeset
376 return fields;
43
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
377 },
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
378 listeners: {
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
379 afterrender: function() {
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
380 // FIXME: This does not work! I do not know how to set the correct
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
381 // value in the combobox based on the model value.
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
382 // Will iterate over defined comboboxes and set the value
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
383 var combos = ['probenart', 'datenbasis'];
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
384 for (var i = combos.length - 1; i >= 0; i--){
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
385 console.log('Searching for ' + combos[i]);
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
386 var element = Ext.getCmp(combos[i]);
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
387 // Statically set to 2. Must be the value from the model.
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
388 element.setValue(2);
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
389 }
9176ad09a4f1 Added testfunction (not working) to initialize the comboboxes with a given value
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 42
diff changeset
390 }
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
391 }
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
392 });
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
393

http://lada.wald.intevation.org