如何在 Zend Form XML 中包含字段集
我想在字段集中包含一些表单元素。 如何在 Zend Form XML 中执行此操作?
我的 XML 文件:
<elements>
<nom>
<type>text</type>
<options>
<label>Nom, Prénom</label>
<width>100</width>
<required>true</required>
</options>
</nom>
<email>
<type>text</type>
<options>
<label>Email</label>
<description>Votre email</description>
<width>100</width>
<validators>
<email>
<validator>EmailAddress</validator>
</email>
</validators>
</options>
</email>
<message>
<type>textarea</type>
<options>
<label>Message</label>
<cols>20</cols>
<rows>5</rows>
<required>true</required>
</options>
</message>
</elements>
首先,是否可以在 Zend Form XML 中创建字段集? 如果可能的话,如何将其中一些元素放入其中? 多谢 !
I would like to include some form elements in a fieldset.
How can I do this in a Zend Form XML ?
My XML file:
<elements>
<nom>
<type>text</type>
<options>
<label>Nom, Prénom</label>
<width>100</width>
<required>true</required>
</options>
</nom>
<email>
<type>text</type>
<options>
<label>Email</label>
<description>Votre email</description>
<width>100</width>
<validators>
<email>
<validator>EmailAddress</validator>
</email>
</validators>
</options>
</email>
<message>
<type>textarea</type>
<options>
<label>Message</label>
<cols>20</cols>
<rows>5</rows>
<required>true</required>
</options>
</message>
</elements>
So first, is it possible to create fieldset in Zend Form XML ?
And if it's possible, how to put some of this elements in ?
Thanks a lot !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指定字段集/子表单显然还不可能。请参阅
可能的解决方法。
Specifying fieldsets/subforms is apparently not possible yet. See
for possible workarounds.