Roo/bootstrap/dash/TabPane.js
[roojs1] / Roo / bootstrap / dash / TabPane.js
1 /*
2  * - LGPL
3  *
4  * Tab pane
5  * 
6  */
7 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
8 /**
9  * @class Roo.bootstrap.TabPane
10  * @extends Roo.bootstrap.Component
11  * Bootstrap TabPane class
12  * @cfg {Boolean} active (false | true) Default false
13
14  * 
15  * @constructor
16  * Create a new TabPane
17  * @param {Object} config The config object
18  */
19
20 Roo.bootstrap.dash.TabPane = function(config){
21     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
22     
23 };
24
25 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26     
27     //text: '',
28     // inverse: false,
29     // form: false,
30     // type: 'nav',
31     // navId : '',
32     // private
33     
34   
35     getAutoCreate : function() {
36         var cfg = {
37             tag: 'div',
38             cls: 'tab-pane',
39         }
40           
41         
42         return cfg;
43     }
44     
45     
46 });
47
48  
49
50
51