view app/view/proben/Create.js @ 532:91a1a88ee353

some resizing and layout.
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 17 Dec 2014 12:08:29 +0100
parents 5d958fb1dd26
children
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.
 */

/*
 * Window to create a Probe
 */
Ext.define('Lada.view.proben.Create', {
    extend: 'Ext.window.Window',
    alias: 'widget.probencreate',

    requires: [
        'Lada.view.proben.CreateForm'
    ],

    title: 'Neue ยง3-Probe',
    autoShow: true,
    modal: true,
    layout: 'fit',

    initComponent: function() {
        this.buttons = [{
            text: 'Speichern',
            action: 'save'
        }, {
            text: 'Abbrechen',
            scope: this,
            handler: this.close
        }];
        this.width = 700;
        var form = Ext.create('Lada.view.proben.CreateForm');
        this.items = [{
            border: 0,
            autoScroll: true,
            items: [form]
        }];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org