Mercurial > lada > lada-client
comparison app/view/Viewport.js @ 12:cdcaf38eab45
Added Viewport class which should be used to setup the viewport. Currently not
used. Should be fixed.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 30 Apr 2013 10:50:00 +0200 |
parents | |
children | f964a50bfe57 |
comparison
equal
deleted
inserted
replaced
11:06da8faa2806 | 12:cdcaf38eab45 |
---|---|
1 Ext.define('Lada.view.Viewport' ,{ | |
2 extend: 'Ext.container.Viewport', | |
3 requires: [ | |
4 'Lada.view.Sql', | |
5 'Lada.view.Proben' | |
6 ], | |
7 layout: 'fit', | |
8 initComponent: function() { | |
9 console.log('Setting up Viewport'); | |
10 this.items = { | |
11 xtype: 'probenlist' | |
12 //items: [{ | |
13 // xtype: 'probenlist' | |
14 //}] | |
15 }; | |
16 this.callParent(arguments); | |
17 } | |
18 }); |