Zend_Form 显示组问题

发布于 2024-08-02 11:10:52 字数 591 浏览 7 评论 0原文

这是我的类扩展 Zend_Form 的一个简短片段:

$this->addElements(array(
    $inputField1,
    $inputField2,
    $inputField3,
    $submitButton
));

$this->addDisplayGroup(array('inputField1',
                             'inputField2',
                             'inputField3',
                             'submitButton'),
                       'fieldset1',
                       array('legend' => 'Lorem Ipsum'));

问题是当我打印表单时,它只打印提交按钮,带有输入字段的字段集(那些是普通的 Zend_Form_Element_Text 元素)不存在。

编辑:如果我删除 $this->addDisplayGroup() (或对其进行注释),则文本元素的显示不会出现问题。

Here is a short snippet from my class extending Zend_Form:

$this->addElements(array(
    $inputField1,
    $inputField2,
    $inputField3,
    $submitButton
));

$this->addDisplayGroup(array('inputField1',
                             'inputField2',
                             'inputField3',
                             'submitButton'),
                       'fieldset1',
                       array('legend' => 'Lorem Ipsum'));

The problem is when I print the form, it prints only the submit button, the fieldset with input fields (those are ordinary Zend_Form_Element_Text elements) isn't there.

EDIT: If I remove the $this->addDisplayGroup() (or comment it), the text elements are displayed without a problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳钉梦 2024-08-09 11:10:52

听起来您没有在控制器中使用 getDisplayGroup() 或稍后在表单 init() 方法中使用 getDisplayGroup()

Sounds like you aren't using the getDisplayGroup() in your controller or later on in the form init() method

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文