Mercurial > lada > lada-client
comparison app/view/widgets/Testdatensatz.js @ 49:792c34b3f5a9
Added combobox for field "testdatensatz"
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 27 May 2013 10:14:29 +0200 |
parents | |
children | c05fda928b82 |
comparison
equal
deleted
inserted
replaced
48:5a977bf18619 | 49:792c34b3f5a9 |
---|---|
1 // Combobox for Umweltbereich | |
2 Ext.define('Lada.view.widgets.Testdatensatz' ,{ | |
3 extend: 'Ext.form.ComboBox', | |
4 editable: false, | |
5 alias: 'widget.testdatensatz', | |
6 store: 'Testdatensatz', | |
7 queryMode: 'local', | |
8 displayField:'testdatensatz', | |
9 valueField: 'testdatensatzId', | |
10 emptyText:'Testdatensatz?', | |
11 initComponent: function() { | |
12 this.callParent(arguments); | |
13 } | |
14 }); |