view app/store/Verwaltungseinheiten.js @ 416:0814c50caa81

Set querymode to remote to only load a subset of items of the Verwaltungseinheit store.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 09 Oct 2013 10:13:32 +0200
parents 65688621c727
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