view app/view/proben/Import.js @ 413:e1af66012ef0 0.6

Reverse displayFields Array before configuring the columns of the result list. Now the displayed columns are in the same order as defined in the query configuration file.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Mon, 23 Sep 2013 14:26:09 +0200
parents 94884cd8f8c0
children f9bb1ecf6462
line wrap: on
line source
/*
 * Window to import a Probe
 */
Ext.define('Lada.view.proben.Import', {
    extend: 'Ext.window.Window',
    alias: 'widget.probenimport',

    title: 'Maske für §3-Proben Import',
    autoShow: true,
    autoScroll: true,
    modal: true,
    initComponent: function() {
        this.buttons = [
            {
                text: 'Speichern',
                action: 'save',
            },
            {
                text: 'Abbrechen',
                scope: this,
                handler: this.close,
            }
        ];
        var form = Ext.create('Lada.view.proben.ImportForm');
        this.items = [form];
        this.callParent();
    }
});

http://lada.wald.intevation.org