Mercurial > lada > lada-client
comparison 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 |
comparison
equal
deleted
inserted
replaced
27:e02d07abc4fe | 28:4d60b9ebce15 |
---|---|
1 Ext.define('Lada.view.search.Variables' ,{ | |
2 extend: 'Ext.panel.Panel', | |
3 alias: 'widget.variables', | |
4 border: false, | |
5 | |
6 initComponent: function() { | |
7 this.items = [ | |
8 { | |
9 id: 'sqlVar1', | |
10 xtype: 'displayfield', | |
11 fieldLabel: 'Variables for SQL 1', | |
12 labelWidth: 300 | |
13 }, | |
14 { | |
15 id: 'sqlVar2', | |
16 xtype: 'displayfield', | |
17 fieldLabel: 'Variables for SQL 2', | |
18 labelWidth: 300 | |
19 } | |
20 ]; | |
21 this.callParent(arguments); | |
22 } | |
23 }); |