Roo/bootstrap/TabPanel.js
[roojs1] / Roo / bootstrap / TabPanel.js
1 /*
2  * - LGPL
3  *
4  * TabPanel
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.TabPanel
10  * @extends Roo.bootstrap.Component
11  * Bootstrap TabPanel class
12  * @cfg {Boolean} active panel active
13  * @cfg {String} html panel content
14  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
15  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
16  * 
17  * 
18  * @constructor
19  * Create a new TabPanel
20  * @param {Object} config The config object
21  */
22
23 Roo.bootstrap.TabPanel = function(config){
24     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
25      this.addEvents({
26         /**
27              * @event changed
28              * Fires when the active status changes
29              * @param {Roo.bootstrap.TabPanel} this
30              * @param {Boolean} state the new state
31             
32          */
33         'changed': true
34      });
35     this.tabId = this.tabId || Roo.id();
36   
37 };
38
39 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
40     
41     active: false,
42     html: false,
43     tabId: false,
44     navId : false,
45     
46     getAutoCreate : function(){
47         var cfg = {
48             tag: 'div',
49             // item is needed for carousel - not sure if it has any effect otherwise
50             cls: 'tab-pane item',
51             html: this.html || ''
52         };
53         
54         if(this.active){
55             cfg.cls += ' active';
56         }
57         
58         if(this.tabId){
59             cfg.tabId = this.tabId;
60         }
61         
62         
63         return cfg;
64     },
65     
66     initEvents:  function()
67     {
68         Roo.log('-------- init events on tab panel ---------');
69         
70         var p = this.parent();
71         this.navId = this.navId || p.navId;
72         
73         if (typeof(this.navId) != 'undefined') {
74             // not really needed.. but just in case.. parent should be a NavGroup.
75             var tg = Roo.bootstrap.TabGroup.get(this.navId);
76             Roo.log(['register', tg, this]);
77             tg.register(this);
78         }
79     },
80     
81     
82     onRender : function(ct, position)
83     {
84        // Roo.log("Call onRender: " + this.xtype);
85         
86         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
87         
88         
89         
90         
91         
92     },
93     setActive: function(state)
94     {
95         Roo.log("panel - set active " + this.tabId + "=" + state);
96         
97         this.active = state;
98         if (!state) {
99             this.el.removeClass('active');
100             
101         } else  if (!this.el.hasClass('active')) {
102             this.el.addClass('active');
103         }
104         this.fireEvent('changed', this, state);
105     }
106     
107     
108 });
109  
110
111  
112
113