我使用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添加到表单中?