You can pass in a different separator when creating your element.
$this->addElement('multiCheckbox', 'my_checkboxes', array(
'separator' => PHP_EOL
));
Or afterwards if necessary:
$multiCheckboxElement->setSeparator(PHP_EOL);
--
Hector
On Thu, Oct 8, 2009 at 12:24 AM, Anders Gunnarsson <[email protected]>wrote:
>
> How do I remove the <br/> between checkBoxes, using the "multiCheckbox"
> (Zend_Form_Element)?
>
> Seems to be a rather unnecessary default anyway. I'd rather use css to
> handle the view.
>
> regards
> Anders
>