]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm/Renderer/Tabla.php
Bugfix en documentacion.
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm / Renderer / Tabla.php
index 1c9c68ae2034526a96de0700615048b4d25bc8aa..79c3f146614f3022169dcde8e7c7fc4f7fdaad32 100644 (file)
@@ -100,7 +100,7 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
             $this->setTable($param);
         }
         else {
-            $this->_tabla =& new Tabla($param);
+            $this->_tabla =& new MECON_HTML_Tabla($param);
         }
     } // end constructor
 
@@ -145,8 +145,8 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
         // add a required note, if one is needed
         if (!empty($form->_required) && !$form->_freezeAll) {
             $id = $this->_tabla->addRow(
-                array($form->getRequiredNote()),
-                array('colspan' => 2, 'align' => 'center', 'cabecera' => true)
+                array('<font size="-2">'.$form->getRequiredNote().'</font>'),
+                array('colspan' => 2, 'cabecera' => true)
             );
             //$this->_tabla->updateCellAttributes($id, array('colspan' => 2));
         }
@@ -171,7 +171,7 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
         $name = $header->getName();
         $this->_tabla->addRow(
             array($header->toHtml()),
-            array('colspan' => 2, $name => true, 'align' => 'center')
+            array('colspan' => 2, $name => true)
         );
     } // end func renderHeader
 
@@ -312,6 +312,10 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
         $this->_tabla =& $param;
     }
 
+    function getCSS() {
+        return $this->_tabla->getCSS();
+    }
+
 } // end class HTML_QuickForm_Renderer_Default
 
 ?>