Mercurial > lada > lada-client
view app/controller/Sql.js @ 8:e4fcb4ddd782
Moved stored SQL into its own file.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 29 Apr 2013 16:31:31 +0200 |
parents | 8e79bda4d55b |
children | 3eaeeec2bb28 |
line wrap: on
line source
Ext.define('Lada.controller.Sql', { extend: 'Ext.app.Controller', views: [ 'sql.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. 'viewport > sqllist': { // Map the "render" event to the given function. render: this.onPanelRendered, // Map Doubleclick on rows of the probenlist. itemclick: this.selectSql } }); }, onPanelRendered: function() { console.log('The panel was rendered'); }, selectSql: function(grid, record) { console.log('Selected SQL ' + record.get('id')); } });