tab-scroller-menu.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:1k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. Ext.onReady(function() {
  8. Ext.QuickTips.init();
  9. // Create our instance of tabScrollerMenu
  10. var scrollerMenu = new Ext.ux.TabScrollerMenu({
  11. maxText  : 15,
  12. pageSize : 5
  13. });
  14. new Ext.Window({
  15. height : 200,
  16. width  : 400,
  17. layout : 'fit',
  18. title  : 'Exercising scrollable tabs with a tabscroller menu',
  19. items  : {
  20. xtype           : 'tabpanel',
  21. activeTab       : 0,
  22. id              : 'myTPanel',
  23. enableTabScroll : true,
  24. resizeTabs      : true,
  25. minTabWidth     : 75,
  26. border          : false,
  27. plugins         : [ scrollerMenu ],
  28. items           : [
  29. {
  30. title : 'our first tab'
  31. }
  32. ]
  33. }
  34. }).show();
  35. // Add a bunch of tabs dynamically
  36. var tabLimit = 22;
  37. (function (num) {
  38. for (var i = 1; i <= tabLimit; i++) {
  39. var title = 'Tab # ' + i;
  40. Ext.getCmp('myTPanel').add({
  41. title    : title,
  42. html     : 'Hi, i am tab ' + i,
  43. tabTip   : title,
  44. closable : true
  45. });
  46. }
  47. }).defer(1000);
  48. });