我使用 Zend Form 创建表单,但我想在<form>
和之间添加自己的输入</form>
。可能吗 ?示例代码:
$form = new Form_file()
$table = new DataTables();
$table->add('id');
....
$table->add('input type="checkbox" name="f" value="1"');
$this->view->form = $form;
如何使用 Zend Form 将 DataTables 添加到表单中?