torsten@0: Ext.application({ torsten@0: name: 'Lada', torsten@0: autoCreateViewprt: true, torsten@0: launch: function() { torsten@0: // Start the application. torsten@2: console.log('Launching the application'); torsten@2: Ext.create('Ext.container.Viewport', { torsten@2: layout: 'fit', torsten@2: items: [ torsten@2: { torsten@2: xtype: 'panel', torsten@2: title: 'Probenauswahlmaske', torsten@2: html: 'Probenliste wird hier angezeigt.' torsten@2: } torsten@2: ] torsten@2: }); torsten@2: }, torsten@3: // Define the controllers of the application. They will be initialized torsten@3: // first before the application "launch" function is called. torsten@3: controllers: [ torsten@3: 'Proben' torsten@3: ] torsten@0: });