Mercurial > lada > lada-client
view app/view/widget/KoordinatenArt.js @ 1431:a1264beb05f9 2.6.2
prepare 2.6.2
author | Marco Lechner, Bundesamt fuer Strahlenschutz, SW 2.1 <mlechner@bfs.de> |
---|---|
date | Fri, 07 Apr 2017 11:29:44 +0200 |
parents | d52d4b55914b |
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 Datenbasis */ Ext.define('Lada.view.widget.KoordinatenArt', { extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.koordinatenart', store: 'KoordinatenArt', displayField: 'id', valueField: 'id', // Enable filtering of comboboxes queryMode: 'local', triggerAction: 'all', typeAhead: false, editable: this.editable || false, disableKeyFilter: true, forceSelection: true, tpl: Ext.create("Ext.XTemplate", '<tpl for="."><div class="x-combo-list-item x-boundlist-item" >' + '{idfGeoKey} - {koordinatenart}</div></tpl>'), displayTpl: Ext.create('Ext.XTemplate', '<tpl for=".">{idfGeoKey} - {koordinatenart}</tpl>'), initComponent: function() { var i18n = Lada.getApplication().bundle; this.emptyText = i18n.getMsg('emptytext.koordinatenart'); this.store = Ext.data.StoreManager.get('koordinatenart'); if (!this.store) { this.store = Ext.create('Lada.store.KoordinatenArt'); } else { this.store.clearFilter(); } this.callParent(arguments); } });