view app/view/widgets/Messmethode.js @ 234:d4894ed5045a

Added tag M1 for changeset f60472df54e3
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 17 Jul 2013 12:15:33 +0200
parents c53f3110852e
children 70a1b5962930
line wrap: on
line source
// Combobox for Messmethode
var mmtStore = Ext.create('Ext.data.Store', {
    fields: ['mmtId', 'messmethhode'],
    proxy: {
        type: 'ajax',
        api: {
        read: 'server/rest/messmethode'
        },
        reader: {
            type: 'json',
            root: 'data'
        }
    }
});

Ext.define('Lada.view.widgets.Messmethode' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.messmethode',
        store: mmtStore,
        displayField:'messmethhode',
        valueField: 'mmtId',
        emptyText:'Wählen Sie eine Messmethode',
    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org