Zend_Form 显示组问题
这是我的类扩展 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您没有在控制器中使用 getDisplayGroup() 或稍后在表单 init() 方法中使用 getDisplayGroup()
Sounds like you aren't using the getDisplayGroup() in your controller or later on in the form init() method