我想在表格元素中有一个来自数据库的数据表,如下所示:
+-----+-------------------------+-----------------------+
| | Number | Name |
+-----+-------------------------+-----------------------+
| [ ] | 123 | ABC |
+-----+-------------------------+-----------------------+
| [x] | 456 | DEF |
+-----+-------------------------+-----------------------+
| [x] | 789 | HIJ |
+-----+-------------------------+-----------------------+
它将允许选择几行,例如MultiCheckBox元素。
这是我想要的一种标记:
<table>
<thead>
<tr>
<th>Select</th>
<th>Number</th>
<th>Name</th>
</tr>
</thead>
<tr>
<td><input type="checkbox" name="subscribers[]" value="1234"></td>
<td>1234</td>
<td>ABC</td>
</tr>
<tr>
<td><input type="checkbox" name="subscribers[]" value="375950"></td>
<td>375950</td>
<td>DEF</td>
</tr>
<!-- and so on... -->
我可以手工完成,但是使用Zend_Form可以让我填充表单,轻松检索值并进行验证。我的表格中还有其他常规元素。
关于如何使用Zend_Form实现这一点的任何想法?也许是自定义元素和装饰器?
谢谢。如果需要,请索取更多信息。
这个问题似乎与以下问题有关:Zend_Form: Database records in HTML table with checkboxes
马克
最佳答案
好,所以这将是一个更长的答案
表格
<?php
class Form_MyTest extends Zend_Form
{
public function init()
{
$element = $this->createElement('multiCheckbox', 'subscribers');
$element->setOptions(array('value1' => 'label1', 'value2' => 'label2'));
$this->addElement($element);
// ... other elements
}
}
Controller
<?php
class MyController extends Zend_Controller_Action
{
public function myTestAction()
{
$form = new Form_MyTest();
// ... processing logics
$this->view->assign('form', $form);
}
}
看法
<form action="<?php echo $this->form->getAction(); ?>" method="<?php echo $this->form->getMethod(); ?>">
<table>
<thead>
<tr>
<th>Select</th>
<th>Number</th>
<th>Name</th>
</tr>
</thead>
<?php $values = $this->form->getElement('subscribers')->getValue(); ?>
<?php foreach($this->form->getElement('subscribers')->getMultiOptions() as $key => $value) : ?>
<tr>
<td><input type="checkbox" name="subscribers[]" id="subscribers-<?php echo $key; ?>" value="<?php echo $key; ?>" <?php echo in_array($key, $values) ? 'checked="checked"':''; ?>/></td>
<td><label for="subscribers-<?php echo $key; ?>"><?php echo $key; ?></label></td>
<td><label for="subscribers-<?php echo $key; ?>"><?php echo $value; ?></label></td>
</tr>
<?php endforeach; ?>
</table>
<!-- rest of form -->
</form>
这里发生了几件事。
我从表单对象中获取了预填充的值:
<?php $values = $this->form->getElement('subscribers')->getValue(); ?>
我根据上面的数组将每个复选框标记为已选中
<?php echo in_array($key, $values) ? 'checked="checked"':''; ?>
响应注释B/C注释的编辑不支持预块
这
$ element-> setOptions(
或者
$ element-> setMultiOptions(
只接受键=>值对,因此您想要在键值对之外执行的任何操作都会有些麻烦。如果程序允许您将另一个变量传递给 View ,则该数组使用与multiCheckbox相同的键,因此
$ this-> view-> assign('more_datums',array('value1'=> array('col_1'=>'col_1_val'[,...]))));;
然后在foreach中使用 View
$ this-> more_datums [$ key] ['col_1']
关于zend-framework - Zend_Form : data table with checkboxes,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7028252/