view app/view/widgets/Mst.js @ 422:f9bb1ecf6462

Removed trailing commas.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 07 Nov 2013 12:01:35 +0100
parents cdef828f8049
children debfcc7713e3
line wrap: on
line source
var mstStore = Ext.create('Ext.data.Store', {
    fields: ['mstId', 'messStelle'],
    sorters: [{
        property: 'messStelle'
    }],
    autoLoad: true,
    proxy: {
        type: 'ajax',
        api: {
        read: 'server/rest/mst'
        },
        reader: {
            type: 'json',
            root: 'data'
        }
    }
});

/**
 * Combobox for Messstelle
 */
Ext.define('Lada.view.widgets.Mst' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.mst',
        store: mstStore,
        displayField:'messStelle',
        valueField: 'mstId',
        typeAhead: true,
        emptyText:'Wählen Sie eine Messstelle',
        // Enable filtering of comboboxes
        autoSelect: false,
        queryMode: 'local',
        triggerAction : 'all',
        typeAhead: true,
        minChars: 0,
    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org