Mercurial > lada > lada-client
view app/controller/Sql.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.controller.Sql', { extend: 'Ext.app.Controller', views: [ 'search.List' ], stores: [ 'Sql' ], init: function() { console.log('Initialising the Sql controller'); this.control({ // CSS like selector to select element in the viewport. See // ComponentQuery documentation for more details. 'queryselector': { // Map the "render" event to the given function. render: this.onPanelRendered, // Map Doubleclick on rows of the probenlist. select: this.selectSql } }); }, onPanelRendered: function() { console.log('The panel was rendered'); }, selectSql: function(element, record, index) { //var selection = record.get('id'); var selection = index; var variables = Ext.getCmp('variables'); var result = Ext.getCmp('result'); console.log('Selected SQL ' + selection); //// Set correct form for the current SQL-Selection //console.log('Length is ' + variables.items.length); //if (variables.items.length > 1) { // console.log('Length is > than 1'); // variables.remove(currentVar.id); //} //if (selection == 1) { // currentVar = variables1; //} //else { // currentVar = variables2; //} //variables.add(currentVar); //// Show the panel for the variable definiton. //variables.show(); // Show the results. console.log('Loading store'); result.getStore().load(); console.log('Store loaded'); result.show(); } }); var currentVar = null; var variables1 = { xtype: 'panel', id: 'variable1', border: false, html: 'Variablen für Abfrage 1' }; var variables2 = { xtype: 'panel', id: 'variable2', border: false, html: 'Variablen für Abfrage 2' };