Mercurial > lada > lada-client
diff app/view/widget/OrtsZusatz.js @ 1316:f772e70ff723
Added model/store/widget for new stammdaten ort attributes.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 03 Feb 2017 13:16:53 +0100 |
parents | |
children | d52d4b55914b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/widget/OrtsZusatz.js Fri Feb 03 13:16:53 2017 +0100 @@ -0,0 +1,43 @@ +/* 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: 'id', + valueField: 'id', + editable: this.editable || false, + 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); + } +});