Mercurial > lada > lada-client
annotate app/view/widgets/Uwb.js @ 74:5c58c0e8936b
Add function which translates the errorcodes returned from the server.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 05 Jun 2013 18:04:07 +0200 |
parents | a35119566841 |
children | 19eab475bbe5 |
rev | line source |
---|---|
31
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
1 // Combobox for Umweltbereich |
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
2 Ext.define('Lada.view.widgets.Uwb' ,{ |
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
3 extend: 'Ext.form.ComboBox', |
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
4 alias: 'widget.uwb', |
33
a35119566841
Fetch UWB dynamically.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
31
diff
changeset
|
5 store: 'Uwb', |
a35119566841
Fetch UWB dynamically.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
31
diff
changeset
|
6 displayField:'umwId', |
a35119566841
Fetch UWB dynamically.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
31
diff
changeset
|
7 valueField: 'umwId', |
a35119566841
Fetch UWB dynamically.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
31
diff
changeset
|
8 emptyText:'Wählen Sie einen Umweltbereich', |
31
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
9 initComponent: function() { |
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
10 this.callParent(arguments); |
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
11 } |
897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
12 }); |