我正在研究 zend 表单和字段集。我已经创建了表单以及提交按钮。这是代码:
$this->add(array(
'name' => 'submit',
'attributes' => array(
'type' => 'submit',
'value' => 'Search Results',
'id' => 'submit',
'class' => 'submitme',
),
));
我可以在视图侧看到我所有的字段集。但是,我看不到提交按钮。这是我的控制器文件代码:
$form = $this->getServiceLocator()->get('FormElementManager')->get('Client\Form\Search\SearchForm');
return new ViewModel(array('form' => $form));
最后这是查看代码:
echo $this->form()->openTag($form);
echo $this->formCollection($form);
echo $this->form()->closeTag($form);