如何在 Zend Form XML 中包含字段集

发布于 2024-12-15 13:57:42 字数 1362 浏览 0 评论 0原文

我想在字段集中包含一些表单元素。 如何在 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 技术交流群。

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

发布评论

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

评论(1

稚然 2024-12-22 13:57:42

指定字段集/子表单显然还不可能。请参阅

可能的解决方法。

Specifying fieldsets/subforms is apparently not possible yet. See

for possible workarounds.

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