]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Termine de armar el nuevo renderer
authorMartín Marrese <marrese@gmail.com>
Mon, 11 Aug 2003 22:58:12 +0000 (22:58 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 11 Aug 2003 22:58:12 +0000 (22:58 +0000)
lib/MECON/HTML/QuickForm/Renderer/Tabla_Servicios.php

index c2b267e37328e066ca9619b229711c4b7edd9c1c..c7ef4cef81ccb076768527afd1027cb8c44faada 100644 (file)
@@ -165,7 +165,8 @@ class MECON_HTML_QuickForm_Renderer_Tabla_Servicios extends HTML_QuickForm_Rende
         $name = $header->getName();
         $this->_tabla->addRow(
             array($header->toHtml()),
-            array('colspan' => 2, $name => true, 'align' => 'center')
+            array('colspan' => 2, $name => true, 'align' => 'left',
+            'class' => 'titulo_form')
         );
     } // end func renderHeader
 
@@ -188,8 +189,10 @@ class MECON_HTML_QuickForm_Renderer_Tabla_Servicios extends HTML_QuickForm_Rende
                     $element->toHtml() . ($error ? "<BR><FONT color=\"red\">$error</FONT>" : ''),
                 )
             );
-            $this->_tabla->updateCellAttributes($id, 0, array('align' => 'left'));
-            $this->_tabla->updateCellAttributes($id, 1, array('align' => 'left'));
+            $this->_tabla->updateCellAttributes($id, 0, array('align' => 'left',
+            'class' => 'txt1'));
+            $this->_tabla->updateCellAttributes($id, 1, array('align' => 'center', 
+            'class' => 'txt1'));
         } else {
             $this->_groupElements[] = ($element->getLabel() ? ($element->getLabel().'&nbsp;') : '') . $element->toHtml();
         }
@@ -260,7 +263,10 @@ class MECON_HTML_QuickForm_Renderer_Tabla_Servicios extends HTML_QuickForm_Rende
                 array($group->getLabel(), join($sep, $this->_groupElements)),
                 array('valign' => 'middle', 'align' => 'left')
             );
-            $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left'));
+            $this->_tabla->updateCellAttributes($id, 0, array('comun' => true,
+            'align' => 'left', 'class' => 'txt1'));
+            $this->_tabla->updateCellAttributes($id, 1, array('comun' => true,
+            'align' => 'center', 'class' => 'txt1'));
         }
         $this->_inGroup = false;
     } // end func finishGroup