2016-10-11 39 views
0

我想用模板來應用到我的腳手架的f:表。不過,我不知道如何訪問我的表格的每一行信息,以便正確編寫我的模板。對於簡單的字段,我有bean,property,label等,但我找不到任何文檔指出如何訪問f:table的信息。請幫我出去! Grails 3.1.xGrails f:表定製

+0

是關於Field插件的,https://grails-fields-plugin.github.io/grails-fields/guide/index.html?如果是,那麼我不會看到'f:table' –

+0

這裏是f:表的鏈接https://grails3-plugins.github.io/fields/snapshot/ref/Tags/table.html f:在搭建索引視圖時會自動生成表格。 –

回答

2

請參閱下面的示例是否可以爲您提供一些提示。

<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