Mercurial > lada > lada-client
view app/view/widget/OrtsZusatz.js @ 1379:e95ac7584c2c
Only displaying own messpunkte in ortszuordnung after creation of new messpunkt
author | Maximilian Krambach <mkrambach@intevation.de> |
---|---|
date | Tue, 14 Feb 2017 14:30:15 +0100 |
parents | d2a0cb1e5596 |
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. */ /** * Combobox for OrtsZusatz */ Ext.define('Lada.view.widget.OrtsZusatz' ,{ extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.ortszusatz', store: 'OrtsZusatz', displayField: 'ortszusatz', valueField: 'ozsId', editable: this.editable || false, disableKeyFilter: true, forceSelection: true, // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, tpl: Ext.create("Ext.XTemplate", '<tpl for="."><div class="x-combo-list-item x-boundlist-item" >' + '{ozsId} - {ortszusatz}</div></tpl>'), displayTpl: Ext.create('Ext.XTemplate', '<tpl for=".">{ozsId} - {ortszusatz}</tpl>'), initComponent: function() { var i18n = Lada.getApplication().bundle; this.emptyText = i18n.getMsg('emptytext.ortszusatz'); this.store = Ext.data.StoreManager.get('ortszusatz'); if (!this.store) { this.store = Ext.create('Lada.store.OrtsZusatz'); } this.store.sort(); this.callParent(arguments); } });