Zend Form 和嵌套字段集/容器?

发布于 2024-08-04 10:40:11 字数 426 浏览 9 评论 0 原文

我有一个表格。我有一个元素需要包装在 div 或 fieldset 中(用于格式化)。然后我有两组元素,包括上面的元素,我想将它们包装在 fieldset 或 div 中。我已经成功创建了两个组,但 Zend Form 似乎不愿意让我创建一个包含组的组。我应该能够做到这一点吗?

这是一个简单的代码示例,假设我已经创建了 elem1、elem2 和 elem3。

$form->addDisplayGroup(array('elem1'), 'group1', array("legend" => "Wrapped element"));
$form->addDisplayGroup(array('group1', 'elem2', 'elem3'), 'group2', array("legend" => "All elements"));

I have a form. I have a single element that needs to be wrapped in a div or fieldset (for formatting). Then I have two groups of elements, including the above, that I want to wrap in a fieldset or div. I've managed to create two groups, but Zend Form seems to balk at letting me create a group containing a group. Should I be able to do this?

Here's a simple code example, assuming I have created elem1, elem2 and elem3.

$form->addDisplayGroup(array('elem1'), 'group1', array("legend" => "Wrapped element"));
$form->addDisplayGroup(array('group1', 'elem2', 'elem3'), 'group2', array("legend" => "All elements"));

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

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

发布评论

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

评论(1

心的位置 2024-08-11 10:40:11

Nasted 组 - 不:( 但您可以使用子表单。

Nasted groups - nope :( but you can use subforms.

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