view app/view/proben/List.js @ 13:a8efc4b96888

Added model for Proben and a Store.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 30 Apr 2013 12:34:36 +0200
parents b8e56e880f02
children fd692dac69a2
line wrap: on
line source
Ext.define('Lada.view.proben.List' ,{
    extend: 'Ext.grid.Panel',
    alias: 'widget.probenlist',
    title: 'Alle Proben',
    store: 'Proben',

    initComponent: function() {
        this.columns = [
            {header: 'Datenbasis',  dataIndex: 'datenbasisId',  flex: 1},
            {header: 'ProbeID', dataIndex: 'probeId', flex: 1}
        ];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org