Mercurial > lada > lada-client
diff app/view/widgets/Mst.js @ 31:897e3100c6da
Changed logic of the Probenauswahl. Now logic works like the BFS version.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 21 May 2013 17:53:51 +0200 |
parents | |
children | 3f801444b8d5 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/widgets/Mst.js Tue May 21 17:53:51 2013 +0200 @@ -0,0 +1,12 @@ +// Combobox for Messtelle +Ext.define('Lada.view.widgets.Mst' ,{ + extend: 'Ext.form.ComboBox', + alias: 'widget.mst', + store: 'Sql', + displayField:'name', + valueField: 'id' , + emptyText:'Wählen Sie eine Messstelle', + initComponent: function() { + this.callParent(arguments); + } +});