Advertisement
Guest User

Untitled

a guest
Oct 6th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         Ext.create 'Ext.panel.Panel',
  2.               width: 500
  3.               height: 400
  4.               title: 'Border Layout'
  5.               layout: 'border'
  6.               items: [
  7.                   title: 'South Region is resizable'
  8.                   region: 'south'
  9.                   xtype: 'panel'
  10.                   height: 100,
  11.                   split: true,
  12.                   margins: '0 5 5 5'
  13.                  ,
  14.                   title: 'West Region is collapsible'
  15.                   region:'west'
  16.                   xtype: 'panel'
  17.                   margins: '5 0 0 5'
  18.                   width: 200
  19.                   collapsible: true
  20.                   id: 'west-region-container'
  21.                   layout: 'fit'
  22.                   ,
  23.                   title: 'Center Region'
  24.                   region: 'center'
  25.                   xtype: 'panel'
  26.                   layout: 'fit'
  27.                   margins: '5 5 0 0'
  28.                  ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement