Mercurial > lada > lada-client
view app/view/widget/Umwelt.js @ 738:2db5d54a5685
Fixed ToDo in Umweltbereiche Store, made Umweltbereiche Typable to fix the regression, Sorted Umweltbereiche by ID
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Mon, 20 Apr 2015 12:24:54 +0200 |
parents | 7f11b75e0188 |
children | 6b0d0e62f7d7 |
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 Umweltbereich */ Ext.define('Lada.view.widget.Umwelt' ,{ extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.umwelt', store: 'Umwelt', displayField: 'id', valueField: 'id', editable: this.editable || false, forceSelection: true, emptyText: 'Wählen Sie einen Umweltbereich', // 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" >' + '{id} - {umweltBereich}</div></tpl>'), displayTpl: Ext.create('Ext.XTemplate', '<tpl for=".">{id} - {umweltBereich}</tpl>'), initComponent: function() { this.store = Ext.data.StoreManager.get('umwelt'); if (!this.store) { this.store = Ext.create('Lada.store.Umwelt'); } this.store.sort(); this.callParent(arguments); } });