Mercurial > lada > lada-client
view app/view/widget/Status.js @ 1095:14c130767e44
Backout accidentally commited changes from rev 9a0f7712f366.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Tue, 10 May 2016 15:30:11 +0200 |
parents | 15d7b7a9e177 |
children | 6866be10e40c |
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. */ var statuswerteStore = Ext.create('Ext.data.Store', { fields: ['id', 'status'], data: [{ 'id': 1, 'status': 'plausibel' }, { 'id': 2, 'status': 'nicht repräsentativ' }, { 'id': 3, 'status': 'nicht plausibel' }, { 'id': 7, 'status': 'nicht lieferbar' }, { 'id': 8, 'status': 'zurücksetzen' }] }); /** * Combobox for Statuswert */ Ext.define('Lada.view.widget.Status', { extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.statuswert', store: statuswerteStore, displayField: 'status', valueField: 'id', emptyText: 'Wählen Sie eine Status', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, initComponent: function() { this.callParent(arguments); } });