1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| Ext.define('SimpleTasks.view.Viewport', {
| extend: 'Ext.container.Viewport',
| requires: [
| 'Ext.layout.container.Border'
| ],
|
| layout: 'border',
|
| items: [
| {
| xtype: 'tasksToolbar',
| region: 'north'
| },
| {
| xtype: 'listTree',
| region: 'west',
| width: 300,
| collapsible: true,
| split: true
| },
| {
| region: 'center',
| xtype: 'taskGrid',
| title: 'All Lists'
| }
| ]
|
| });
|
|