+ function toHtml() {
+ $renderer =& new MECON_HTML_QuickForm_Renderer_Tabla($this->_rendererOpts);
+ $this->accept($renderer);
+ return $renderer->toHtml();
+ }
+ function setRendererOpts($opts) {
+ $this->_rendererOpts = $opts;
+ }
+ function getRendererOpts($opts) {
+ return $this->_rendererOpts;;
+ }
+ function updateRendererOpts($opts) {
+ $this->_rendererOpts = array_merge($this->_rendererOpts, $opts);
+ }