Guest User

Untitled

a guest
Jul 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. root = new Ext.Panel({
  2. fullscreen: true,
  3. layout: 'hbox',
  4. version: '1.1.1',
  5. scroll: false,
  6. items: [{
  7. xtype: 'panel',
  8. width: '50%',
  9. height: '100%',
  10. layout: 'fit',
  11. items: [{
  12. xtype: 'list',
  13. itemTpl: '{display}',
  14. store: new Ext.data.Store({
  15. model: 'item',
  16. data: [...]
  17. })
  18. }]
  19. }, {
  20. xtype: 'panel',
  21. width: '50%',
  22. height: '100%',
  23. layout: 'fit',
  24. items: [{
  25. xtype: 'list',
  26. itemTpl: '{display}',
  27. store: new Ext.data.Store({
  28. model: 'item',
  29. data: [...]
  30. })
  31. }]
  32. }]
  33. });
Add Comment
Please, Sign In to add comment