Mercurial > lada > lada-client
view app/view/widget/Status.js @ 1127:5941ee0c7247
Do not constrain range of values.
Zero and (e.g. for temperature) even negative values have to be possible.
As numbers with exponent >99 are unlikely, they are displayed as they are.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Tue, 24 May 2016 15:20:01 +0200 |
parents | 6866be10e40c |
children | 85acec6c6e6a |
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': 4, 'status': 'Rückfrage' }, { '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 einen Status', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction: 'all', typeAhead: false, minChars: 0, initComponent: function() { this.callParent(arguments); } });