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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
| /**
| * @class Ext.app.Portal
| * @extends Object
| * A sample portal layout application class.
| */
|
| Ext.define('Ext.app.Portal', {
|
| extend: 'Ext.container.Viewport',
| requires: ['Ext.app.PortalPanel', 'Ext.app.PortalColumn', 'Ext.app.GridPortlet', 'Ext.app.ChartPortlet'],
|
| getTools: function(){
| return [{
| xtype: 'tool',
| type: 'gear',
| handler: function(e, target, header, tool){
| var portlet = header.ownerCt;
| portlet.setLoading('Loading...');
| Ext.defer(function() {
| portlet.setLoading(false);
| }, 2000);
| }
| }];
| },
|
| initComponent: function(){
| var content = '<div class="portlet-content">'+Ext.example.shortBogusMarkup+'</div>';
|
| Ext.apply(this, {
| id: 'app-viewport',
| layout: {
| type: 'border',
| padding: '0 5 5 5' // pad the layout from the window edges
| },
| items: [{
| id: 'app-header',
| xtype: 'box',
| region: 'north',
| height: 40,
| html: 'Ext Portal'
| },{
| xtype: 'container',
| region: 'center',
| layout: 'border',
| items: [{
| id: 'app-options',
| title: 'Options',
| region: 'west',
| animCollapse: true,
| width: 200,
| minWidth: 150,
| maxWidth: 400,
| split: true,
| collapsible: true,
| layout:{
| type: 'accordion',
| animate: true
| },
| items: [{
| html: content,
| title:'Navigation',
| autoScroll: true,
| border: false,
| iconCls: 'nav'
| },{
| title:'Settings',
| html: content,
| border: false,
| autoScroll: true,
| iconCls: 'settings'
| }]
| },{
| id: 'app-portal',
| xtype: 'portalpanel',
| region: 'center',
| items: [{
| id: 'col-1',
| items: [{
| id: 'portlet-1',
| title: 'Grid Portlet',
| tools: this.getTools(),
| items: Ext.create('Ext.app.GridPortlet'),
| listeners: {
| 'close': Ext.bind(this.onPortletClose, this)
| }
| },{
| id: 'portlet-2',
| title: 'Portlet 2',
| tools: this.getTools(),
| html: content,
| listeners: {
| 'close': Ext.bind(this.onPortletClose, this)
| }
| }]
| },{
| id: 'col-2',
| items: [{
| id: 'portlet-3',
| title: 'Portlet 3',
| tools: this.getTools(),
| html: '<div class="portlet-content">'+Ext.example.bogusMarkup+'</div>',
| listeners: {
| 'close': Ext.bind(this.onPortletClose, this)
| }
| }]
| },{
| id: 'col-3',
| items: [{
| id: 'portlet-4',
| title: 'Stock Portlet',
| tools: this.getTools(),
| items: Ext.create('Ext.app.ChartPortlet'),
| listeners: {
| 'close': Ext.bind(this.onPortletClose, this)
| }
| }]
| }]
| }]
| }]
| });
| this.callParent(arguments);
| },
|
| onPortletClose: function(portlet) {
| this.showMsg('"' + portlet.title + '" was removed');
| },
|
| showMsg: function(msg) {
| var el = Ext.get('app-msg'),
| msgId = Ext.id();
|
| this.msgId = msgId;
| el.update(msg).show();
|
| Ext.defer(this.clearMsg, 3000, this, [msgId]);
| },
|
| clearMsg: function(msgId) {
| if (msgId === this.msgId) {
| Ext.get('app-msg').hide();
| }
| }
| });
|
|