123456789101112131415161718192021222324252627 |
- function getCustomLayouts() {
- return {
- /*
- * CenterLayout demo panel
- */
- centerLayout: {
- id: 'center-panel',
- layout: 'ux.center',
- items: {
- title: 'Centered Panel: 75% of container width and 95% height',
- 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;'
- }]
- }
- }
- };
- }
|