view app/view/sql/List.js @ 8:e4fcb4ddd782

Moved stored SQL into its own file.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Mon, 29 Apr 2013 16:31:31 +0200
parents 8e79bda4d55b
children 4faac2a04345
line wrap: on
line source
Ext.define('Lada.view.sql.List' ,{
    extend: 'Ext.grid.Panel',
    alias: 'widget.sqllist',
    title: 'SQL-Auswahl',
    store: 'Sql',

    initComponent: function() {
        this.columns = [
            {header: 'ID',  dataIndex: 'id',  flex: 1},
            {header: 'Kurzname', dataIndex: 'name', flex: 1},
            {header: 'SQL', dataIndex: 'desc', flex: 1}
        ];

        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org