Zend Form: Checkbox element displays as hidden field?
I would like to add a simple check box to my form: $element = new Zend_Form_Element_Checkbox('dont'); $element->setDescription('Check this box if you don\'t want to do this action.'); $form->addElement($element); However, this is what the html looks like: <dt id="dont-label"> </dt> <dd id="dont-element"> <input type="hidden" name="dontAttach" value="0"> <input type="checkbox" name="dontAttach" id="dontAttach" value="1"> <p class="description">Don't attach a bulletin. I only want to send an email.</p> </dd> The problem with this is that I'm using jQuery to hide all the DT/DDs that have a label