Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <script type="text/javascript" language="javascript">
  2. Ext.define('MyTabMasterSeat',
  3. {
  4. extend: 'Ext.container.Container',
  5. xtype:'TabMasterSeat',
  6. alias: 'widget.MasterSeat',
  7. title: 'Master Seat',
  8. id: 'tab1d',
  9. height: '100%',
  10. closable: true,
  11. layout: 'border',
  12. items: [{
  13. xtype:'tabpanel',
  14. region:'center',
  15. items: [{
  16. title: 'Deck 1',
  17. html: '<iframe width="100%" height="100%" src="<?php echo base_url('seat/view/1'); ?>"></iframe>'
  18. },{
  19. title: 'Deck 2',
  20. html: '<iframe width="100%" height="100%" src="<?php echo base_url('seat/view/2'); ?>"></iframe>'
  21. },{
  22. title: 'Deck 3',
  23. html: '<iframe width="100%" height="100%" src="<?php echo base_url('seat/view/3'); ?>"></iframe>'
  24. },{
  25. title: 'Poonton 2',
  26. html: '<iframe width="100%" height="100%" src="<?php echo base_url('seat/view/4'); ?>"></iframe>'
  27. },{
  28. title: 'Poonton 1',
  29. html: '<iframe width="100%" height="100%" src="<?php echo base_url('seat/view/5'); ?>"></iframe>'
  30. }]
  31. }]
  32. });
  33. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement