annotate app/view/proben/List.js @ 30:c684f01c0b72

Removed Nebenprobenummer from overview. Ich think this field makes no sense for a Proben listing.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 16 May 2013 18:26:05 +0200
parents 1fdef170d5a5
children e9229d79e430
rev   line source
4
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
1 Ext.define('Lada.view.proben.List' ,{
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
2 extend: 'Ext.grid.Panel',
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
3 alias: 'widget.probenlist',
25
f964a50bfe57 Restructured the application. Fixed layouts etc.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 22
diff changeset
4 maxHeight: 350,
13
a8efc4b96888 Added model for Proben and a Store.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 4
diff changeset
5 store: 'Proben',
4
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
6 initComponent: function() {
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
7 this.columns = [
22
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
8 {header: 'Datenbasis', dataIndex: 'datenbasisId', width: 70},
29
1fdef170d5a5 Changed MLP to MPL. It seems that this one was a typo.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 25
diff changeset
9 {header: 'MPL', dataIndex: 'mplId', width: 50},
22
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
10 {header: 'UWB', dataIndex: 'umwId', width: 50},
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
11 {header: 'HPNR', dataIndex: 'hauptprobenNr'},
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
12 {header: 'E.Gemeinde', dataIndex: '', flex: 1},
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
13 {header: 'Ursprungsgemeinde', dataIndex: '', flex: 1},
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
14 {header: 'ProbeID', dataIndex: 'probeId'},
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
15 {header: 'OZB', dataIndex: '', width: 50},
0a4674f17bcb Added more fields to the overview and set correct reference in on the edit
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 15
diff changeset
16 {header: 'MST', dataIndex: 'mstId', width: 50}
4
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
17 ];
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
18 this.callParent(arguments);
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
19 }
b8e56e880f02 Added a first example view (userlisting) from the EXJS Tutorial. Need to be
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
20 });

http://lada.wald.intevation.org