view app/view/search/Query2.js @ 81:1279baefd61a

Do not collapse the fields, as required field should be visible on creation.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 11 Jun 2013 09:58:40 +0200
parents 897e3100c6da
children
line wrap: on
line source
Ext.define('Lada.view.search.Query2' ,{
    extend: 'Ext.form.FieldSet',
    alias: 'widget.query2',
    title: 'Variablenbelegung (Zeiten in UTC)',
    requires: [
        'Lada.view.widgets.Datetime'
    ],
    initComponent: function() {
        this.items = [
            {
                id: 'pbegin',
                xtype: 'datetime',
                fieldLabel: 'Probenbeginn',
                labelWidth: 100
            }
        ];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org