Mercurial > lada > lada-client
view app/view/search/List.js @ 242:c8c53f162a22
Iteratre the available cols in reverse order (begining from 0) to maintain the
configured order of fields.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 23 Jul 2013 11:43:16 +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); } });