Mercurial > lada > lada-client
view app/view/proben/Create.js @ 540:99e738c17b81
Add detail button to tables
author | Roland Geider <roland.geider@intevation.de> |
---|---|
date | Wed, 17 Dec 2014 16:59:45 +0100 |
parents | 91a1a88ee353 |
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); } });