Mercurial > lada > lada-client
view app/view/search/List.js @ 46:39f5f1529847
Added combotbox for Betriebsart.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 24 May 2013 17:02:45 +0200 |
parents | 897e3100c6da |
children | 5a977bf18619 |
line wrap: on
line source
Ext.define('Lada.view.search.List' ,{ extend: 'Ext.form.FieldSet', title: 'SQL-Auswahl', alias: 'widget.queryselector', initComponent: function() { this.items = [ { id: 'search', xtype: 'combobox', store: 'Sql', displayField:'name', valueField:'id', emptyText:'Wählen Sie eine Abfrage' } ]; this.callParent(arguments); } });