allow string based values for comboboxarray
[roojs1] / Roo / bootstrap / TableBody.js
index 47dc0ad..8f23365 100644 (file)
@@ -1,18 +1,22 @@
 /*
  * - LGPL
  *
- * column
+ * table body
  * 
  */
 
 /**
- * @class Roo.bootstrap.Column
+ * @class Roo.bootstrap.TableBody
  * @extends Roo.bootstrap.Component
- * Bootstrap Column class
- * @cfg {number} colspan  Number of columsn to span
+ * Bootstrap TableBody class
+ * @cfg {String} cls element class
+ * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
+ * @cfg {String} align Aligns the content inside the element
+ * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
+ * @cfg {String} valign Vertical aligns the content inside the <tbody> element
  * 
  * @constructor
- * Create a new Column
+ * Create a new TableBody
  * @param {Object} config The config object
  */
 
@@ -22,16 +26,60 @@ Roo.bootstrap.TableBody = function(config){
 
 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
     
+    cls: false,
+    tag: false,
+    align: false,
+    charoff: false,
+    valign: false,
+    
     getAutoCreate : function(){
         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
        
-       cfg = {
-           tag: 'tbody'
-       }
+        cfg = {
+            tag: 'tbody'
+        };
+            
+        if (this.cls) {
+            cfg.cls=this.cls
+        }
+        if(this.tag){
+            cfg.tag = this.tag;
+        }
        
+        if(this.align){
+            cfg.align = this.align;
+        }
+        if(this.charoff){
+            cfg.charoff = this.charoff;
+        }
+        if(this.valign){
+            cfg.valign = this.valign;
+        }
+        
         return cfg;
     }
-   
+    
+    
+//    initEvents : function()
+//    {
+//        
+//        if(!this.store){
+//            return;
+//        }
+//        
+//        this.store = Roo.factory(this.store, Roo.data);
+//        this.store.on('load', this.onLoad, this);
+//        
+//        this.store.load();
+//        
+//    },
+//    
+//    onLoad: function () 
+//    {   
+//        this.fireEvent('load', this);
+//    }
+//    
+//   
 });