你不需要這樣的子表單,只需要一些具有特殊裝飾器的常規表單,或者刪除了一些裝飾器。
<?php
class Your_Form_Example extends Zend_Form
{
public function init() {
// wrap the select tag in a <span> tag, hide label, errors, and description
$selectDecorators = array(
'ViewHelper',
array('HtmlTag', array('tag' => 'span'))
);
$this->addElement('select', 'danny', array(
'required' => true,
'multiOptions' => array('opt1', 'opt2'),
'decorators' => $selectDecorators // use the reduced decorators given above
));
}
}
那麼這裏就是呈現的形式查看腳本...
<form method="<?php echo $form->getMethod() ?>" action="<?php echo $form->getAction() ?>">
<p>Danny had <?php echo $form->danny ?> apples and James had <?php echo $form->james ?> pears.</p>
<p>More stuff here...</p>
<?php echo $form->submit ?>
</form>
這將導致類似
<p>Danny had <span><select name="danny" id="danny"><option>opt1</option><option>opt2</option></select></span> apples and James had .....</p>
爲了保持形式輸出好看,錯誤,描述和標籤裝飾器被刪除,不會被渲染。因此,當您檢查表單上的錯誤時,如果select元素有錯誤,您將需要在表單上或其他位置顯示它們,因爲它們不會與select元素一起呈現。
希望有所幫助。