view app/view/status/Create.js @ 245:9a2c04b19874

Put all available search filters to the viewport. They are later hidden and shown when the user selects the search query
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 23 Jul 2013 14:16:41 +0200
parents 30ba9a98d627
children 11f8a2c1b610
line wrap: on
line source
Ext.define('Lada.view.status.Create', {
    extend: 'Ext.window.Window',
    alias: 'widget.statuscreate',

    title: 'Maske für den Messstatus',
    autoShow: true,
    autoScroll: true,
    modal: true,

    initComponent: function() {
        var form = Ext.create('Lada.view.status.CreateForm', this.initialConfig);
        this.items = [form];
        this.buttons = [
            {
                text: 'Speichern',
                scope: form,
                action: 'save'
            }
        ];
        this.callParent();
    }
});

http://lada.wald.intevation.org