view app/view/window/Ortserstellung.js @ 1321:f1e348109ebb

Updated style to fit the other windows style.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 03 Feb 2017 14:31:10 +0100
parents bfdc00c24baf
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 for new Ort, wraps around a {@link Lada.view.form.Ortsertellung}
 */
Ext.define('Lada.view.window.Ortserstellung', {
    extend: 'Ext.window.Window',
    alias: 'window.ortserstellung',
    requires: [
        'Lada.model.Ort',
        'Lada.view.form.Ortserstellung'
    ],

    minWidth: 350,

    margin: 10,

    shadow: false,

    border: 0,

    bodyStyle: {background: '#fff'},

    layout: 'fit',

    title: 'Neuen Messpunkt anlegen',

    /**
     * The record for the new Ort. Should be a {@link Lada.model.Ort}
     */
    record: null,

    parentWindow: null,

    initComponent: function() {
        var me = this;
        if (this.record === null) {
            this.record = Ext.create('Lada.model.Ort');
        }
        this.items = [
            Ext.create('Lada.view.form.Ortserstellung', {
                record: me.record,
                listeners: {
                    destroy: {fn: function() {me.close();}}
                }
            })
        ];
        this.buttons = [{
            text: 'Schließen',
            scope: this,
            handler: this.close
        }];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org