view app/view/proben/Create.js @ 184:cfa4ed3b62b5

Show search on app startup.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 05 Jul 2013 11:18:43 +0200
parents c05fda928b82
children 0d6552bb28ea
line wrap: on
line source
Ext.define('Lada.view.proben.Create', {
    extend: 'Ext.window.Window',
    alias: 'widget.probencreate',

    title: 'Maske für §3-Proben',
    // Make size of the dialog dependend of the available space.
    // TODO: Handle resizing the browser window.
    width: Ext.getBody().getViewSize().width - 30,
    height: Ext.getBody().getViewSize().height - 30,
    autoShow: true,
    autoScroll: true,
    modal: true,
    initComponent: function() {
        var form = Ext.create('Lada.view.proben.CreateForm');
        this.items = [form];
        this.buttons = [
            {
                text: 'Speichern',
                handler: form.commit,
                scope: form
            }
        ];
        this.callParent();
    }
});

http://lada.wald.intevation.org