$name = $header->getName();
$this->_tabla->addRow(
array($header->toHtml()),
- array('colspan' => 2, $name => true, 'align' => 'center')
+ array('colspan' => 2, $name => true, 'align' => 'left',
+ 'class' => 'titulo_form')
);
} // end func renderHeader
$element->toHtml() . ($error ? "<BR><FONT color=\"red\">$error</FONT>" : ''),
)
);
- $this->_tabla->updateCellAttributes($id, 0, array('align' => 'left'));
- $this->_tabla->updateCellAttributes($id, 1, array('align' => 'left'));
+ $this->_tabla->updateCellAttributes($id, 0, array('align' => 'left',
+ 'class' => 'txt1'));
+ $this->_tabla->updateCellAttributes($id, 1, array('align' => 'center',
+ 'class' => 'txt1'));
} else {
$this->_groupElements[] = ($element->getLabel() ? ($element->getLabel().' ') : '') . $element->toHtml();
}
array($group->getLabel(), join($sep, $this->_groupElements)),
array('valign' => 'middle', 'align' => 'left')
);
- $this->_tabla->updateCellAttributes($id, 0, array('titulo' => true, 'align' => 'left'));
+ $this->_tabla->updateCellAttributes($id, 0, array('comun' => true,
+ 'align' => 'left', 'class' => 'txt1'));
+ $this->_tabla->updateCellAttributes($id, 1, array('comun' => true,
+ 'align' => 'center', 'class' => 'txt1'));
}
$this->_inGroup = false;
} // end func finishGroup