Mercurial > lada > lada-client
diff app/view/widget/Testdatensatz.js @ 548:d47ee7439f44
Added new js files.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 06 Mar 2015 12:43:52 +0100 |
parents | |
children | 8a156a7fbe67 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/widget/Testdatensatz.js Fri Mar 06 12:43:52 2015 +0100 @@ -0,0 +1,37 @@ +/* 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. + */ + +var testdatensatzStore = Ext.create('Ext.data.Store', { + fields: ['testdatensatzId', 'testdatensatz'], + data: [{ + 'testdatensatzId': true, + 'testdatensatz': 'Ja' + }, { + 'testdatensatzId': false, + 'testdatensatz': 'Nein' + }] +}); + +/** + * Combobox for Testdatensatz. + * This widget is also used a generic "Ja/Nein" combobox. + */ +Ext.define('Lada.view.widget.Testdatensatz', { + extend: 'Lada.view.widget.base.ComboBox', + editable: false, + alias: 'widget.testdatensatz', + store: testdatensatzStore, + queryMode: 'local', + displayField: 'testdatensatz', + valueField: 'testdatensatzId', + emptyText: 'Testdatensatz?', + + initComponent: function() { + this.callParent(arguments); + } +});