view app/view/status/List.js @ 362:6a7a9267e00f

Issue56: Changed way how to set the form and window to readonly. Now all dialogs should habe proper readonly settings. Now the Save and Cancel button are displayed as needed.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 15 Aug 2013 14:07:35 +0200
parents b7c419a2b476
children d1bb925bb5f5
line wrap: on
line source
/*
 * Grid to list Status
 */
Ext.define('Lada.view.status.List' ,{
    extend: 'Ext.grid.Panel',
    alias: 'widget.statuslist',
    store: 'Status',
    viewConfig: {
        maxHeight: 350,
        emptyText: 'Keine Statusangaben gefunden.',
        // minHeight and deferEmptyText are needed to be able to show the
        // emptyText message.
        minHeight: 35,
        deferEmptyText: false
    },
    parentId: null,
    probeId: null,
    initComponent: function() {
        this.dockedItems = [
            {
                xtype: 'toolbar',
                dock: 'top',
                items: [
                    {
                        text: 'Hinzufügen',
                        icon: 'gfx/plus.gif',
                        action: 'add',
                        probeId: this.probeId,
                        parentId: this.parentId
                    },
                    {
                        text: 'Löschen',
                        icon: 'gfx/minus.gif',
                        action: 'delete'
                    }
                ]
            }
        ];
        this.columns = [
            {header: 'Erzeuger', dataIndex: 'erzeuger'},
            {header: 'Status', dataIndex: 'status'},
            {header: 'Datum', dataIndex: 'sdatum'},
            {header: 'Text', dataIndex: 'stext', flex: 1}
        ];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org