+ $this->setJsWarnings('Hay errores en el formulario:', 'Por favor corrÃjalos antes de continuar.');
+ }
+ function addRule($element, $message, $type, $format='', $validation='client', $reset = false, $force = false)
+ {
+ parent::addRule($element, $message, $type, $format, $validation, $reset, $force);
+ }
+ function addGroupRule($group, $arg1, $type='', $format='', $howmany=0, $validation = 'client')
+ {
+ parent::addGroupRule($group, $arg1, $type, $format, $howmany, $validation);
+ }
+ 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);