父表中是否可以有子表

发布于 2024-12-10 09:37:18 字数 787 浏览 0 评论 0原文

是否可以创建带有嵌入式子表的显示标签表?下面的示例是创建一个员工报告,并将他/她的联系方式作为子表。

<%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
<display:table id="employees" name="employees" uid="1">
    <display:column title="Id" property="employeeId" />
    <display:column title="Department" property="department" />
    <display:column title="Contact Points" property="contacts">
    <display:table id="contacts" name="contacts" uid="2">
        <display:column title="Postal Address" property="postalAddress" />
        <display:column title="Email" property="emailAddress" />
        <display:column title="Cell Phone" property="cellPhoneNumber" />
    </display:table>
    </display:column>
</display:table>

Is it possible to create a displaytag table with embedded child table ? Example below is to create an Employee report with his/her contact means as child table.

<%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
<display:table id="employees" name="employees" uid="1">
    <display:column title="Id" property="employeeId" />
    <display:column title="Department" property="department" />
    <display:column title="Contact Points" property="contacts">
    <display:table id="contacts" name="contacts" uid="2">
        <display:column title="Postal Address" property="postalAddress" />
        <display:column title="Email" property="emailAddress" />
        <display:column title="Cell Phone" property="cellPhoneNumber" />
    </display:table>
    </display:column>
</display:table>

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

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

发布评论

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

评论(1

掩于岁月 2024-12-17 09:37:18

可以创建 displaytag 嵌套表:
只需按照这个示例进行操作即可

It's possible to create displaytag nested tables:
just follow this example

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