7

我很难按照我需要的方式装饰 Zend 表格。这是我需要的 HTML 结构:

<table>
<thead><tr><th>one</th><th>two</th><th>three</th><th>four</th></thead>
<tbody>
<tr>
 <td><input type='checkbox' id='something'/></td>
 <td><img src='src'/></td>
 <td><input type='text' id='something'/></td>
 <td><input type='radio' group='justonegroup'/></td>
</tr>
<tr>
 <td><input type='checkbox' id='something'/></td>
 <td><img src='src'/></td>
 <td><input type='text' id='something'/></td>
 <td><input type='radio' group='justonegroup'/></td>
</tr>
</tbody>
</table>

正文中的行数由我的表单类中的循环结构决定。当然,所有 ID 都是唯一的。表单中的所有单选按钮都属于一组。我的问题确实是我不确定如何在我的表中创建对象 Zend_Form_Element_MultiCheckbox 和 Zend_Form_Element_Radio 并为其设置样式。我将在哪里/如何将适当的装饰器应用于复选框和单选按钮以具有像上面这样的表单结构?

到目前为止我的表单类:

class Form_ManageAlbums extends Zend_Form
{
  public function __construct($album_id)
  {
    $photos = Model_DbTable_Photos::getAlbumPhotos($album_id);

    $selector = new Zend_Form_Element_MultiCheckbox('selector');

    $radio = new Zend_Form_Element_Radio('group');

    $options = array();

    while($photo = $photos->fetchObject())
    {

      $options[$photo->id] = '';

      $image = new Zend_Form_Element_Image('image'.$photo->id);
      $image->setImageValue('/dog/upload/'.$photo->uid.'/photo/'.$photo->src);

      $caption = new Zend_Form_Element_Text('caption'.$photo->id);
      $caption->setValue($photo->caption);

      $this->addElements(array($image, $caption));
    }

    $selector->addMultiOptions($options);
    $radio->addMultiOptions($options);

    $this->addElement($selector);

  $this->setDecorators(array(
        'FormElements',
        array('HtmlTag', array('tag' => 'table')),
        'Form'
    ));
  }
}

我已经为 td 和 tr 尝试了一些装饰器的组合,但迄今为止没有成功。

感谢您的帮助,非常感谢。JP列瓦茨

4

2 回答 2

11

这是使用 zend 表单装饰器创建表格布局的教程:教程 - 使用装饰器创建带有表格布局的 Zend 框架表单

于 2010-08-10T07:18:53.500 回答
4

看看这篇devzone 文章。它将解释装饰器是如何工作的,因此您知道发生了什么以及如何编写自己的,然后以表格示例结束。

Zend_Form 的作者在这两篇文章中对装饰器做了一些很好的解释:

于 2009-10-30T23:19:59.890 回答