custom.js 843 B

123456789101112131415161718192021222324252627
  1. function getCustomLayouts() {
  2. return {
  3. /*
  4. * CenterLayout demo panel
  5. */
  6. centerLayout: {
  7. id: 'center-panel',
  8. layout: 'ux.center',
  9. items: {
  10. title: 'Centered Panel: 75% of container width and 95% height',
  11. layout: 'ux.center',
  12. autoScroll: true,
  13. width: '75%',
  14. height: '95%',
  15. bodyStyle: 'padding:20px 0;',
  16. items: [{
  17. title: 'Inner Centered Panel',
  18. html: 'Fixed 300px wide and full height. The container panel will also autoscroll if narrower than 300px.',
  19. width: 300,
  20. frame: true,
  21. bodyStyle: 'padding:10px 20px;'
  22. }]
  23. }
  24. }
  25. };
  26. }