Mercurial > lada > lada-client
view app/view/search/List.js @ 424:9c44ce52a33c
Fix rendering of the orte list. Some fields was not shown because of wrong
loading of ortedetails
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 08 Nov 2013 09:58:54 +0100 |
parents | d5a2f7af695a |
children | debfcc7713e3 |
line wrap: on
line source
/* * Grid to list available search queryies */ Ext.define('Lada.view.search.List' ,{ extend: 'Ext.form.FieldSet', title: 'SQL-Auswahl', alias: 'widget.queryselector', initComponent: function() { this.layout = 'column', this.items = [ { id: 'search', xtype: 'combobox', editable: false, store: 'Queries', displayField:'name', valueField:'id', emptyText:'Wählen Sie eine Abfrage' }, { xtype: 'panel', maxWidth: '500', border: false, margin: '0 10', items: [ { id: 'sqldesc', xtype: 'displayfield', fieldLabel: 'Beschreibung', value: '-/-' }, { id: 'sqlquery', xtype: 'displayfield', fieldLabel: 'Abfrage', value: '-/-' } ] } ]; this.callParent(arguments); } });