Splitting up a Zend_Form
问题 I have created a Zend_From with a couple of fields. What I'd like to do, is put them inside paragraphs, so that they would flow naturally. For an example Danny had [select with 1-10] apples and James had [select with 3-20] pears. I have been trying to do this with $elem= $this->registerForm->getElement('danny'); but then on the output, the value of this element is not included in the form anymore. I also thought that this could be done with Zend_Form_SubForm() , but couldn't find any examples