Guest User

Untitled

a guest
Jan 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. Ext.define('SycsApp.view.HotOffers', {
  2. extend: 'Ext.Panel',
  3. requires: ['Ext.carousel.Carousel', 'Ext.TitleBar'],
  4.  
  5. config: {
  6. layout: 'card',
  7. items: [
  8. {
  9. docked: 'top',
  10. xtype: 'titlebar',
  11. ui: 'top-sub',
  12. title: 'Hot Offers',
  13. },
  14. {
  15. id: 'hotOffersCarousel',
  16. xtype: 'carousel',
  17. width: '100%',
  18. items: [
  19. {
  20. html : 'Item 1',
  21. style: 'background-color: #5E99CC'
  22. },
  23. {
  24. html : 'Item 2',
  25. style: 'background-color: #759E60'
  26. },
  27. {
  28. html : 'Item 3'
  29. }
  30. ]
  31. }
  32. ]
  33. }
  34. });
Add Comment
Please, Sign In to add comment