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
| function getCustomLayouts() {
| return {
| /*
| * CenterLayout demo panel
| */
| centerLayout: {
| id: 'center-panel',
| layout: 'ux.center',
| items: {
| title: 'Centered Panel: 75% of container width and 95% height',
| border: true,
| layout: 'ux.center',
| autoScroll: true,
| width: '75%',
| height: '95%',
| bodyStyle: 'padding:20px 0;',
| items: [{
| title: 'Inner Centered Panel',
| html: 'Fixed 300px wide and full height. The container panel will also autoscroll if narrower than 300px.',
| width: 300,
| frame: true,
| bodyStyle: 'padding:10px 20px;'
| }]
| }
| }
| };
|
| }
|
|