+ if ($clase == 'gruposecciones') {
+ $fAntiguedad =& $this->addElement('text', 'antiguedad', 'Antigüedad');
+ $fSecciones =& $this->addElement('select', 'secciones', 'Secciones',
+ array(1=>'test1', 'test2', 'test3', 'test4', 'test5', 'test6', 'test7', 'test8'),
+ array('multiple' => 'multiple', 'size' => 5));
+ $fMostrarHijos =& $this->addElement('checkbox', 'mostrar_hijos', 'Mostrar hijos');
+ // Validación.
+ $this->addRule('antiguedad', 'La antigüedad debe ser un número natural.',
+ 'regex', '/^\d*$/');
+ // Carga datos.
+ if ($accion & (BAJA | MODIFICACION)) {
+ $fAntiguedad->setValue($obj->antiguedad);
+ $fSecciones->setSelected($obj->secciones);
+ $fMostrarHijos->setChecked($obj->mostrar_hijos);
+ }
+ }