]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm.php
Cambie el comportamiento de setRendererOpts. Ahora se comporta como un update. Hice...
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm.php
index 8c3deb192afeb20e6b75243beb978493d95d2adf..352e46a78457895519d386c3e7d5c6cb7f7eb55a 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);
     }
 
     /**
     }
 
     /**