view app/view/widgets/Uwb.js @ 120:19eab475bbe5

Clean up part one. Reduced application to the search page. Moved some stores for comoboboxes right to the combobox
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 21 Jun 2013 16:53:39 +0200
parents a35119566841
children 70a1b5962930
line wrap: on
line source
// Combobox for Umweltbereich
var uwbStore = Ext.create('Ext.data.Store', {
    fields: ['umwId'],
    proxy: {
        type: 'ajax',
        api: {
        read: 'server/rest/uwb'
        },
        reader: {
            type: 'json',
            root: 'data'
        }
    }
});

Ext.define('Lada.view.widgets.Uwb' ,{
        extend: 'Ext.form.ComboBox',
        alias: 'widget.uwb',
        store: uwbStore,
        displayField:'umwId',
        valueField: 'umwId',
        emptyText:'Wählen Sie einen Umweltbereich',
    initComponent: function() {
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org