Mercurial > lada > lada-client
view app/view/search/List.js @ 252:1bce2d59b7e9
Update description and sql statement when chosing another query
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 24 Jul 2013 15:24:23 +0200 |
parents | 5a9c6b71bad2 |
children | c2effc4a497b |
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', editable: false, store: 'Queries', displayField:'name', valueField:'id', emptyText:'Wählen Sie eine Abfrage' } ]; this.callParent(arguments); } });