Mercurial > lada > lada-client
view app/view/form/OrtInfo.js @ 1291:e9f812528324
ortszuordnung form changes
removed discard button
cursor change if new position is to be selected on map
display of GemeindeId and Staat in ortzuordnung
author | Maximilian Krambach <mkrambach@intevation.de> |
---|---|
date | Wed, 01 Feb 2017 18:00:59 +0100 |
parents | bfdc00c24baf |
children | 5dfd5798cbcc |
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. */ /** * Form used to display the data of an Ort record. */ Ext.define('Lada.view.form.OrtInfo', { extend: 'Ext.form.Panel', alias: 'widget.ortinfo', model: 'Lada.model.Ort', border: 0, flex: 1, margin: '0, 10, 0, 0', record: null, initComponent: function() { var i18n = Lada.getApplication().bundle; this.items = [{ layout: 'vbox', flex: 1, border: 0, defaults: { xtype: 'displayfield', labelWidth: 125, submitValue: false }, items: [{ fieldLabel: i18n.getMsg('orte.ortId'), name: 'ortId' }, { fieldLabel: i18n.getMsg('orte.kurztext'), name: 'kurztext' }, { fieldLabel: i18n.getMsg('orte.langtext'), name: 'langtext' }, { fieldLabel: i18n.getMsg('staat'), name: 'staat' }, { fieldLabel: i18n.getMsg('orte.gemeindename'), name: 'gemeinde' }, { fieldLabel: i18n.getMsg('orte.gemId'), name: 'gemId' }, { fieldLabel: i18n.getMsg('orte.kda'), name: 'kdaId' }, { fieldLabel: i18n.getMsg('orte.koordx'), name: 'koordXExtern' }, { fieldLabel: i18n.getMsg('orte.koordy'), name: 'koordYExtern' }] }]; this.callParent(arguments); } });