Mercurial > lada > lada-client
view app/view/search/List.js @ 239:f57b496b4caa
Added function to dynamically add columns to the probenlist.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 23 Jul 2013 11:30:03 +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); } });