torsten@28: Ext.define('Lada.view.search.Variables' ,{ torsten@25: extend: 'Ext.panel.Panel', torsten@25: alias: 'widget.variables', torsten@25: border: false, torsten@25: torsten@25: initComponent: function() { torsten@25: this.items = [ torsten@25: { torsten@25: id: 'sqlVar1', torsten@25: xtype: 'displayfield', torsten@25: fieldLabel: 'Variables for SQL 1', torsten@25: labelWidth: 300 torsten@25: }, torsten@25: { torsten@25: id: 'sqlVar2', torsten@25: xtype: 'displayfield', torsten@25: fieldLabel: 'Variables for SQL 2', torsten@25: labelWidth: 300 torsten@25: } torsten@25: ]; torsten@25: this.callParent(arguments); torsten@25: } torsten@25: });