view app/view/search/Variables.js @ 28:4d60b9ebce15

Renamed sql modul into search. Further display The query selection as Combobox instead of a grid.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 16 May 2013 17:55:53 +0200
parents app/view/sql/Variables.js@f964a50bfe57
children 897e3100c6da
line wrap: on
line source
Ext.define('Lada.view.search.Variables' ,{
    extend: 'Ext.panel.Panel',
    alias: 'widget.variables',
    border: false,

    initComponent: function() {
        this.items = [
            {
                id: 'sqlVar1',
                xtype: 'displayfield',
                fieldLabel: 'Variables for SQL 1',
                labelWidth: 300
            },
            {
                id: 'sqlVar2',
                xtype: 'displayfield',
                fieldLabel: 'Variables for SQL 2',
                labelWidth: 300
            }
        ];
        this.callParent(arguments);
    }
});

http://lada.wald.intevation.org