Mercurial > lada > lada-client
view app/view/form/Ortszuordnung.js @ 1327:c413ec1aaa2e
reload ort store for grid using netzbetreiber as filter param.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 03 Feb 2017 15:26:41 +0100 |
parents | f1e348109ebb |
children | 2c5d89886885 |
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 to edit the Ortszuordnung of a Probe */ Ext.define('Lada.view.form.Ortszuordnung', { extend: 'Ext.form.Panel', alias: 'widget.ortszuordnungform', requires: [ 'Lada.view.form.OrtInfo', 'Lada.view.widget.Verwaltungseinheit', 'Lada.view.widget.Staat' ], layout: 'fit', margin: '5, 5, 0, 5', border: 0, /** * @cfg: the type of the record to be passed. Should be either 'probe' or 'mpr'. * Variable naming of these differ slightly (see function initComponent and the * two lada.data.model.ortszuordnung* ) */ type: null, record: null, trackResetOnLoad: true, initComponent: function() { var i18n = Lada.getApplication().bundle; var me = this; if (this.type == 'probe') { this.ortIdName = 'ortId'; this.typName = 'ortszuordnungTyp'; } else if (this.type == 'mpr') { this.ortIdName = 'ort'; this.typName = 'ortsTyp'; } this.items = [{ xtype: 'fieldset', title: i18n.getMsg('ortszuordnung.form.fset.title'), layout: 'fit', items: [{ layout: 'hbox', border: 0, margin: '0, 0, 10, 0', dockedItems: [{ xtype: 'toolbar', dock: 'bottom', border: '0, 1, 1, 1', style: { borderBottom: '1px solid #b5b8c8 !important', borderLeft: '1px solid #b5b8c8 !important', borderRight: '1px solid #b5b8c8 !important' }, items: [{ text: i18n.getMsg('ortszuordnung.form.setOrt'), tooltip: i18n.getMsg('ortszuordnung.form.setOrt.qtip'), icon: 'resources/img/dialog-ok-apply.png', action: 'setOrt', enableToggle: true, disabled: true }, '->', { text: i18n.getMsg('save'), tooltip: i18n.getMsg('save.qtip'), icon: 'resources/img/dialog-ok-apply.png', action: 'save', disabled: true }, { text: i18n.getMsg('discard'), qtip: 'Ă„nderungen verwerfen', icon: 'resources/img/dialog-cancel.png', action: 'revert', }] }], items: [{ layout: 'vbox', autoscroll: true, border: 0, items: [{ layout: 'vbox', border: 0, margin: '0, 20, 0, 0', items: [{ xtype: 'tfield', labelWidth: 125, maxLength: 100, name: 'ortszusatztext', fieldLabel: i18n.getMsg('ortszuordnung.form.field.ortszusatztext') }, { xtype: 'cbox', labelWidth: 125, maxLength: 1, allowBlank: false, editable: true, name: this.typName, disableKeyFilter: true, fieldLabel: i18n.getMsg('ortszuordnung.form.field.ortszuordnungtyp'), store: Ext.create('Ext.data.Store', { fields: ['value', 'label'], //TODO: Meaning of the letters should be added data : [ {'value':'U', 'label':'U'}, {'value':'E', 'label':'E'}, {'value':'Z', 'label':'Z'}, {'value':'A', 'label':'A'} ] }), displayField: 'label', valueField: 'value', emptyText: 'Bitte geben Sie einen Ortszuordnungstyp ein', queryMode: 'local' }, { // this field is hidden because the user doesn't // need to know the internal ortID xtype: 'textfield', allowBlank: false, regex: /^[0-9]{1,45}$/, submitValue: true, hidden: true, name: this.ortIdName, listeners: { change: me.changed } }] }, Ext.create('Lada.view.form.OrtInfo') ] }] }] }]; this.callParent(arguments); }, setRecord: function(record) { this.getForm().loadRecord(record); if (!record.get('readonly')) { this.down('[action=setOrt]').enable(); this.setReadOnly(false); } else { this.setReadOnly(true); } }, /** * setOrt can be called from a CallbackFunction, ie select from a grid. * it will set the ortId of this record */ setOrt: function(row, selRecord, index, opts) { var newOrtId = selRecord.get('id'); if (newOrtId) { if (this.type == 'probe') { this.getForm().setValues({ortId: newOrtId}); } else { this.getForm().setValues({ort: newOrtId}); } this.setOrtInfo(selRecord); } }, setOrtInfo: function(ortrecord) { var verwStore = Ext.StoreManager.get('verwaltungseinheiten'); var verw = verwStore.getById(ortrecord.get('gemId')); var staatStore = Ext.StoreManager.get('staaten'); var staat = staatStore.getById(ortrecord.get('staatId')); var ortinfo = this.down('ortinfo'); ortinfo.loadRecord(ortrecord); ortinfo.getForm().setValues({ gemeinde: verw.get('bezeichnung'), staat: staat.get('staatIso'), lon: ortrecord.get('longitude'), lat: ortrecord.get('latitude') }); }, setMessages: function(errors, warnings) { var key; var element; var content; var i18n = Lada.getApplication().bundle; if (warnings) { for (key in warnings) { element = this.down('component[name=' + key + ']'); if (!element) { continue; } content = warnings[key]; var warnText = ''; for (var i = 0; i < content.length; i++) { warnText += i18n.getMsg(content[i].toString()) + '\n'; } element.showWarnings(warnText); } } if (errors) { for (key in errors) { element = this.down('component[name=' + key + ']'); if (!element) { continue; } content = errors[key]; var errorText = ''; for (var i = 0; i < content.length; i++) { errorText += i18n.getMsg(content[i].toString()) + '\n'; } element.showErrors(errorText); } } }, clearMessages: function() { this.down('tfield[name=ortszusatztext]').clearWarningOrError(); }, setReadOnly: function(value) { this.down('tfield[name=ortszusatztext]').setReadOnly(value); var fieldId = 'textfield[name=' + this.typName +']'; this.down(fieldId).setReadOnly(value); }, /** * Helper to trigger the forms' validity check */ changed: function(newValue, oldValue) { var controller = Lada.app.getController( 'Lada.controller.form.Ortszuordnung'); var form = this.up('form').getForm(); var fields = form.getFields().items; controller.validityChange(form, form.isValid()); } });