Hi My checked checkboxes are missing in the Post.
I'm making checkboxes like this:
$group = new Zend_Form_Element_MultiCheckbox('groups');
$group->addMultiOption(1,'A');
$group->addMultiOption(2,'B');
$group->addMultiOption(3,'C');
$form->addElement($group);
They look good in the html, and when posted I can see "groups" as an
array in $_POST,
but just an empty string when looking in the $form->getValues() What do I need to do to make the checkboxes appere in $form->getValues() ? regards Anders
