Mercurial > lada > lada-client
comparison app/view/widgets/Datenbasis.js @ 41:a1be7ccd4d0c
Added datenbasis combobox
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 24 May 2013 16:37:54 +0200 |
parents | |
children | c05fda928b82 |
comparison
equal
deleted
inserted
replaced
40:f9b6de636ad0 | 41:a1be7ccd4d0c |
---|---|
1 // Combobox for Datenbasis | |
2 Ext.define('Lada.view.widgets.Datenbasis' ,{ | |
3 extend: 'Ext.form.ComboBox', | |
4 alias: 'widget.datenbasis', | |
5 store: 'Datenbasis', | |
6 displayField:'datenbasis', | |
7 valueField: 'datenbasisId', | |
8 emptyText:'Wählen Sie eine Datenbasis', | |
9 initComponent: function() { | |
10 this.callParent(arguments); | |
11 } | |
12 }); | |
13 |