view app/view/widget/Status.js @ 1115:6866be10e40c

Add missing status value.
author Tom Gottfried <tom@intevation.de>
date Wed, 18 May 2016 18:22:33 +0200
parents 15d7b7a9e177
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);
    }
});

http://lada.wald.intevation.org