view app/view/search/Query1.js @ 31:897e3100c6da

Changed logic of the Probenauswahl. Now logic works like the BFS version.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 21 May 2013 17:53:51 +0200
parents
children
line wrap: on
line source
Ext.define('Lada.view.search.Query1' ,{
    extend: 'Ext.form.FieldSet',
    title: 'Variablenbelegung',
    alias: 'widget.query1',
    requires: [
        'Lada.view.widgets.Mst',
        'Lada.view.widgets.Uwb'
    ],
    initComponent: function() {
        this.items = [
            {
                id: 'mst',
                xtype: 'mst',
                fieldLabel: 'Messstelle',
                labelWidth: 100
            },
            {
                id: 'uwb',
                xtype: 'uwb',
                fieldLabel: 'Umweltbereich',
                labelWidth: 100
            }
        ];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org