view app/store/Staaten.js @ 374:832e3c8f9191

Implemented dynamic ProbelList model. The model will get initialized by the fields configured in the sql configuration.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 20 Aug 2013 16:50:47 +0200
parents 39297b8e5ba2
children f9bb1ecf6462
line wrap: on
line source
/**
 * Store for Staaten
 */
Ext.define('Lada.store.Staaten', {
    extend: 'Ext.data.Store',
    sorters: [{
        property: 'staat',
    }],
    model: 'Lada.model.Staat',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        api: {
        read: 'server/rest/staat'
        },
        reader: {
            type: 'json',
            root: 'data'
        }
    }
});

http://lada.wald.intevation.org