Roo/bootstrap/TabGroup.js
authorAlan Knowles <alan@roojs.com>
Wed, 4 Feb 2015 01:53:43 +0000 (09:53 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 4 Feb 2015 01:53:43 +0000 (09:53 +0800)
Roo/bootstrap/TabGroup.js

index e69de29..2cede90 100644 (file)
@@ -0,0 +1,38 @@
+/*
+ * - LGPL
+ *
+ * column
+ * 
+ */
+
+/**
+ * @class Roo.bootstrap.TabGroup
+ * @extends Roo.bootstrap.Column
+ * Bootstrap Column class
+ * 
+ * @constructor
+ * Create a new TabGroup
+ * @param {Object} config The config object
+ */
+
+Roo.bootstrap.TabGroup = function(config){
+    Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
+};
+
+Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
+    
+    
+    getAutoCreate : function(){
+        var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
+        
+        cfg.cls += ' tab-content';
+        
+        return cfg;
+    },
+    
+   
+});
+
+
\ No newline at end of file