view app/store/Verwaltungseinheiten.js @ 422:f9bb1ecf6462

Removed trailing commas.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 07 Nov 2013 12:01:35 +0100
parents eeeaea114249
children 2375e7247523
line wrap: on
line source
/**
 * Store for Verwaltungseinheiten
 */
Ext.define('Lada.store.Verwaltungseinheiten', {
    extend: 'Ext.data.Store',
    fields: ['gemId', 'bezeichnung'],
    sorters: [{
        property: 'bezeichnung'
    }],
    autoLoad: false,
    proxy: {
        type: 'ajax',
        api: {
        read: 'server/rest/verwaltungseinheit'
        },
        reader: {
            type: 'json',
            root: 'data'
        }
    }
});

http://lada.wald.intevation.org