view app/view/FilterPanel.js @ 795:255568e97c96

Latest commit broke the search function
author Dustin Demuth <dustin@intevation.de>
date Mon, 18 May 2015 17:04:32 +0200
parents bc6bc71efb78
children 2e81d2ad6af7
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);
    }
});

http://lada.wald.intevation.org