gpt4 book ai didi

grails - Grails f:表定制

转载 作者:行者123 更新时间:2023-12-02 14:29:45 26 4
gpt4 key购买 nike

我正在尝试使用模板来应用我的f:table脚手架。但是,我不知道如何访问表的每一行的信息以正确编写模板。对于简单的字段,我具有bean,属性,标签等,但是找不到任何文档来指出如何访问f:table的信息。请帮帮我!
Grails 3.1.x

最佳答案

请参见下面的示例是否可以为您提供一些提示。

<table>
<thead>
<tr>
<g:each in="${domainProperties}" var="p" status="i">
<g:set var="propTitle">
${domainClass.propertyName}.${p.name}.label
</g:set>
<g:sortableColumn property="${p.name}"
title="${message(code: propTitle, default: p.naturalName)}" />
</g:each>
</tr>
</thead>
<tbody>
<g:each in="${collection}" var="bean" status="i">
<tr class="${(i % 2) == 0 ? 'even' : 'odd'}">
<g:each in="${domainProperties}" var="p" status="j">
<g:if test="${j==0}">
<td>
<g:link method="GET" resource="${bean}">
<f:display bean="${bean}"
property="${p.name}"
displayStyle="${displayStyle?:'table'}" />
</g:link>
</td>
</g:if>
<g:else>
<td>
<f:display bean="${bean}"
property="${p.name}"
displayStyle="${displayStyle?:'table'}"/>
</td>
</g:else>
</g:each>
</tr>
</g:each>
</tbody>
</table>

取自 the Github page

关于grails - Grails f:表定制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39972816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com