Mercurial > lada > lada-client
view app/view/Viewport.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 | f964a50bfe57 |
children | 897e3100c6da |
line wrap: on
line source
Ext.define('Lada.view.Viewport' ,{ extend: 'Ext.container.Viewport', requires: [ 'Lada.view.search.List', 'Lada.view.search.Variables', 'Lada.view.proben.List' ], initComponent: function() { console.log('Setting up Viewport'); this.items = { xtype: 'panel', title: '<center>Probenauswahlmaske</center>', bodyPadding: '10 10', items: [ { xtype: 'queryselector', margin: '0 0 10 0' }, // Variables settings for the current selected sql statement. //{ // id: 'variables', // xtype: 'variables' //}, // Resultlist for the query. { id: 'result', xtype: 'probenlist' } ] }; this.callParent(arguments); } });