view app/store/Verwaltungseinheiten.js @ 421:f06a882ab776

Added compiler tags for sencha cmd compiler and made the DateTime lib compile.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 07 Nov 2013 11:59:40 +0100
parents eeeaea114249
children f9bb1ecf6462 7d80feaa4a7f
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