Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / examples / tabs / tab-scroller-menu.js
index 0e33d77..7210bc9 100644 (file)
@@ -1,51 +1,74 @@
-/*!
- * Ext JS Library 3.3.0
- * Copyright(c) 2006-2010 Ext JS, Inc.
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+Ext.Loader.setConfig({enabled: true});
+
+Ext.Loader.setPath('Ext.ux', '../ux/');
+
+Ext.require([
+    'Ext.tip.QuickTipManager',
+    'Ext.window.Window',
+    'Ext.tab.Panel',
+    'Ext.ux.TabScrollerMenu'
+]);
 
 Ext.onReady(function() {
-       Ext.QuickTips.init();
-       // Create our instance of tabScrollerMenu
-       var scrollerMenu = new Ext.ux.TabScrollerMenu({
-               maxText  : 15,
-               pageSize : 5
-       });
-       new Ext.Window({
-               height : 200,
-               width  : 400,
-               layout : 'fit',
-               title  : 'Exercising scrollable tabs with a tabscroller menu',
-               items  : {
-                       xtype           : 'tabpanel',
-                       activeTab       : 0,
-                       id              : 'myTPanel',
-                       enableTabScroll : true,
-                       resizeTabs      : true,
-                       minTabWidth     : 75,
-                       border          : false,
-                       plugins         : [ scrollerMenu ],
-                       items           : [
-                               {
-                                       title : 'our first tab'
-                               }
-                       ]
-               }
-       }).show();
-       
-       // Add a bunch of tabs dynamically
-       var tabLimit = 22;
-       (function (num) {
-               for (var i = 1; i <= tabLimit; i++) {
-                       var title = 'Tab # ' + i;
-                       Ext.getCmp('myTPanel').add({
-                               title    : title,
-                               html     : 'Hi, i am tab ' + i,
-                               tabTip   : title,
-                               closable : true
-                       });
-               }
-       }).defer(1000);
-
-});
\ No newline at end of file
+    // enable the tabTip config below
+    Ext.tip.QuickTipManager.init();
+
+    var win = Ext.createWidget('window', {
+        height: 400,
+        width: 600,
+        layout: 'fit',
+        title: 'Exercising scrollable tabs with a TabScroller menu',
+        border: false,
+        items: {
+            xtype: 'tabpanel',
+            activeTab: 0,
+            itemId: 'tabPanel',
+            plugins: [{
+                ptype: 'tabscrollermenu',
+                maxText  : 15,
+                pageSize : 5
+            }],
+            items: [{
+                title: 'First tab',
+                html: 'Creating more tabs...'
+            }]
+        }
+    });
+
+    win.show();
+
+    // Add a bunch of tabs dynamically
+    var tabLimit = 12,
+        tabPanel = win.getComponent('tabPanel');
+
+    Ext.defer(function (num) {
+        var i,
+            title,
+            tabs = [];
+        for (i = 1; i <= tabLimit; i++) {
+            title = 'Tab # ' + i;
+            tabs.push({
+                title: title,
+                html: 'Hi, I am tab ' + i,
+                tabTip: title,
+                closable: true
+            });
+        }
+        tabPanel.add(tabs);
+        tabPanel.getComponent(0).body.update('Done!');
+    }, 100);
+});