]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm.php
Se agrega el método dump que usa Var_Dump de PEAR.
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm.php
index 8c3deb192afeb20e6b75243beb978493d95d2adf..c5b52cafa236657b7428e4ec83aab9bf5d2343b6 100644 (file)
@@ -37,7 +37,7 @@ class MECON_HTML_QuickForm extends MECON_HTML_QuickFormSimple {
     function MECON_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null)
     {
         parent::MECON_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes);
     function MECON_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null)
     {
         parent::MECON_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes);
-        $this->renderer =& new MECON_HTML_QuickForm_Renderer_Tabla($this->_rendererOpts);
+        $this->renderer =& new MECON_HTML_QuickForm_Renderer_Tabla();
     }
 
     function toHtml() 
     }
 
     function toHtml() 
@@ -53,7 +53,7 @@ class MECON_HTML_QuickForm extends MECON_HTML_QuickFormSimple {
      * @deprecated 
      */
     function setRendererOpts($opts) {
      * @deprecated 
      */
     function setRendererOpts($opts) {
-        $this->renderer->setAttributes($opts);
+        $this->renderer->updateAttributes($opts);
     }
 
     /**
     }
 
     /**
@@ -76,6 +76,10 @@ class MECON_HTML_QuickForm extends MECON_HTML_QuickFormSimple {
         $this->renderer->updateAttributes($opts);
     }
 
         $this->renderer->updateAttributes($opts);
     }
 
+    function getCSS() {
+        return $this->renderer->getCSS();
+    }
+
 }
 
 ?>
\ No newline at end of file
 }
 
 ?>
\ No newline at end of file