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
62
63
64
65
66
67
68
69
70
71
72
73
| Ext.require('Ext.tab.*');
|
| Ext.onReady(function(){
| // basic tabs 1, built from existing content
| var tabs = Ext.widget('tabpanel', {
| renderTo: 'tabs1',
| width: 450,
| activeTab: 0,
| tabPosition: 'bottom',
| defaults :{
| bodyPadding: 10
| },
| items: [{
| contentEl:'script',
| title: 'Short Text',
| closable: true
| },{
| contentEl:'markup',
| title: 'Long Text'
| }]
| });
|
| // second tabs built from JS
| var tabs2 = Ext.widget('tabpanel', {
| renderTo: document.body,
| activeTab: 0,
| width: 600,
| height: 250,
| tabPosition: 'bottom',
| plain: true,
| defaults :{
| autoScroll: true,
| bodyPadding: 10
| },
| items: [{
| title: 'Normal Tab',
| html: "My content was added during construction."
| },{
| title: 'Ajax Tab 1',
| loader: {
| url: 'ajax1.htm',
| contentType: 'html',
| loadMask: true
| },
| listeners: {
| activate: function(tab) {
| tab.loader.load();
| }
| }
| },{
| title: 'Ajax Tab 2',
| loader: {
| url: 'ajax2.htm',
| contentType: 'html',
| autoLoad: true,
| params: 'foo=123&bar=abc'
| }
| },{
| title: 'Event Tab',
| listeners: {
| activate: function(tab){
| alert(tab.title + ' was activated.');
| }
| },
| html: "I am tab 4's content. I also have an event listener attached."
| },{
| title: 'Disabled Tab',
| disabled: true,
| html: "Can't see me cause I'm disabled"
| }
| ]
| });
| });
|
|