Mercurial > lada > lada-client
view app/view/FilterPanel.js @ 921:8ffaeb6ac4a4 2.1.1
Removed tag 2.1.1
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Fri, 14 Aug 2015 13:28:20 +0200 |
parents | 2e81d2ad6af7 |
children | af9879d72310 |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * Panel to show available search queries */ Ext.define('Lada.view.FilterPanel', { extend: 'Ext.form.FieldSet', alias: 'widget.filterpanel', require: [ 'Ext.layout.container.Column' ], title: 'Filter-Auswahl', initComponent: function() { this.layout = { type: 'vbox', align: 'stretch' }; var me = this; this.items = [{ xtype: 'combobox', name: 'filter', editable: false, store: Ext.create('Lada.store.ProbeQueries',{ listeners: { load: function(s){ var records = new Array(); records.push(s.getAt(0)); var combo = me.down('combobox[name=filter]'); combo.select(records[0]); combo.fireEvent('select', combo, records); } } }), displayField: 'name', valueField: 'id', emptyText: 'Wählen Sie eine Abfrage' }, { xtype: 'panel', border: false, margin: '0 0 10 0', items: [{ xtype: 'button', action: 'search', text: 'Suchen', margin: '0 10 0 0' }, { xtype: 'button', action: 'reset', text: 'Zurücksetzen' }], hidden: false }, { xtype: 'panel', maxWidth: '500', border: false, margin: '0 10', items: [{ xtype: 'displayfield', name: 'description', fieldLabel: 'Beschreibung', shrinkWrap: 3, value: '-/-' }, { xtype: 'displayfield', name: 'columns', fieldLabel: 'Spalten', value: '-/-' }] }]; this.callParent(arguments); } });