Mercurial > lada > lada-client
view app.js @ 3:ac736eea9b30
Initialise the Proben controller.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 29 Apr 2013 14:21:11 +0200 |
parents | 570373979387 |
children | b8e56e880f02 |
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', items: [ { xtype: 'panel', title: 'Probenauswahlmaske', html: 'Probenliste wird hier angezeigt.' } ] }); }, // Define the controllers of the application. They will be initialized // first before the application "launch" function is called. controllers: [ 'Proben' ] });