Mercurial > lada > lada-client
diff app/view/widget/MessprogrammLand.js @ 1107:9bcd17f7a0ae
change some fields in probeform to combobox
author | Michael Stanko <mstanko@bfs.de> |
---|---|
date | Thu, 12 May 2016 16:03:04 +0200 |
parents | |
children | 92c0fa2f29b0 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/widget/MessprogrammLand.js Thu May 12 16:03:04 2016 +0200 @@ -0,0 +1,36 @@ +/* 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 MessprogrammLand + */ +Ext.define('Lada.view.widget.MessprogrammLand', { + extend: 'Lada.view.widget.base.ComboBox', + alias: 'widget.messprogrammland', + store: 'messprogrammkategorie', + displayField: 'display', + valueField: 'id', + emptyText: 'Wählen Sie eine Landesmessprogramm', + // Enable filtering of comboboxes + queryMode: 'local', + triggerAction: 'all', + typeAhead: true, + minChars: 0, + layout: 'hbox', + + initComponent: function() { + this.store = Ext.data.StoreManager.get('messprogrammkategorie'); + if (!this.store) { + this.store = Ext.create('Lada.store.MessprogrammKategorie'); + } + else { + this.store.clearFilter(); + } + this.callParent(arguments); + } +});