1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| 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() {
| // enable the tabTip config below
| Ext.tip.QuickTipManager.init();
|
| var win = Ext.widget('window', {
| constrain: true,
| 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);
| });
|
|