Mercurial > lada > lada-client
view app.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 | 54f95ab2f375 |
children | 12a65c2c5dbf |
line wrap: on
line source
Ext.application({ name: 'Lada', autoCreateViewprt: true, launch: function() { // Start the application. console.log('Launching the application'); Ext.create('Ext.container.Viewport', { layout: 'fit', title: 'Probenauswahlmaske', items: [ { xtype: 'sqllist' } ] }); }, // Define the controllers of the application. They will be initialized // first before the application "launch" function is called. controllers: [ 'Proben', 'Sql' ] });