]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se saca el nowrap.
authorMartín Marrese <marrese@gmail.com>
Fri, 1 Aug 2003 20:33:25 +0000 (20:33 +0000)
committerMartín Marrese <marrese@gmail.com>
Fri, 1 Aug 2003 20:33:25 +0000 (20:33 +0000)
lib/MECON/HTML/QuickForm/Renderer/Tabla.php
lib/MECON/HTML/Tabla.php

index c192e780ecefc1e23f11b861a1133595a3887a21..a767a19c5b88feeeb4dfdc68e2fdab2bf55a8465 100644 (file)
@@ -188,7 +188,7 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
                     $element->toHtml() . ($error ? "<BR><FONT color=\"red\">$error</FONT>" : ''),
                 )
             );
-            $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left', 'nowrap' => true));
+            $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left'));
             $this->_tabla->updateCellAttributes($id, 1, array('align' => 'left'));
         } else {
             $this->_groupElements[] = ($element->getLabel() ? ($element->getLabel().'&nbsp;') : '') . $element->toHtml();
@@ -260,7 +260,7 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
                 array($group->getLabel(), join($sep, $this->_groupElements)),
                 array('valign' => 'middle', 'align' => 'left')
             );
-            $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left', 'nowrap' => true));
+            $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left'));
         }
         $this->_inGroup = false;
     } // end func finishGroup
index ca725900b2f1e104172f902444791014a9600508..d67711ce3bbb9fb23a072c980d0d0e0f9b2726e7 100644 (file)
@@ -376,13 +376,13 @@ class Tabla extends HTML_Table {
                 case 'border':
                 case 'cellspacing':
                 case 'cellpadding':
+                case 'nowrap':
                     $rta[$attr] = $val;
                     break;
                 case 'spacing':
                 case 'padding':
                     $rta["cell$attr"] = $val;
                     break;
-                case 'nowrap':
                 case 'th':
                     $rta[$attr] = '';
                     break;