Mercurial > lada > lada-client
view app.js @ 9:12a65c2c5dbf
Add probnelist to view
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 30 Apr 2013 10:48:09 +0200 |
parents | 54f95ab2f375 |
children | 21d7b63f8783 |
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: 'probenlist' } ] }); }, // Define the controllers of the application. They will be initialized // first before the application "launch" function is called. controllers: [ 'Proben', 'Sql' ] });