我有一个有 8 列的 JSF 数据表。最后 4 列是数值列。假设我的数据表带来了 20 行结果。我想添加最后一行,它只包含最后 4 列的字段并包含 20 行对应值的总和。我想用 Facelets 代码添加最后一行。我怎样才能做到这一点 ?
问问题
4939 次
1 回答
1
如果您有一个表作为此表,则可以添加此页脚构面:
<h:dataTable id="table1" value="#{shoppingCartBean.items}" var="item"
border="1">
<f:facet name="header">
<h:outputText value="Your Shopping Cart" />
</f:facet>
<h:column>
<f:facet name="header">
<h:outputText value="Item Description" />
</f:facet>
<h:outputText value="#{item.description}" />
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Price" />
</f:facet>
<h:outputText value="#{item.price}" />
</h:column>
<f:facet name="footer">
<h:panelGroup style="display:block; text-align:right">
<h:outputText value="Total 1: #{shoppingCartBean.total1}" />
<h:outputText value="Total 2: #{shoppingCartBean.total2}" />
<h:outputText value="Total 3: #{shoppingCartBean.total3}" />
<h:outputText value="Total 4: #{shoppingCartBean.total4}" />
</h:panelGroup>
</f:facet>
</h:dataTable>
然后你应该在你的支持 bean 中编写全部函数:
@ManagedBean
public class ShoppingCartBean {
...
public int total1() {
// Do the sum of all elements from first column of table as you wish....
return result;
}
public int total2() {
// Do the sum of all elements from second column of table as you wish....
return result;
}
}
如果您更喜欢更精细和可重用的解决方案,您可以创建自己的 EL 函数,如下所示:
<f:facet name="footer">
<h:panelGroup style="display:block; text-align:right">
<h:outputText value="Total 1: #{func:calculateTotal(shoppingCartBean.items, 4}" />
<h:outputText value="Total 2: #{func:calculateTotal(shoppingCartBean.items, 5}" />
<h:outputText value="Total 3: #{func:calculateTotal(shoppingCartBean.items, 6}" />
<h:outputText value="Total 4: #{func:calculateTotal(shoppingCartBean.items, 7}" />
</h:panelGroup>
</f:facet>
对于此解决方案,您可以查看BalusC 关于如何创建自定义 el 函数的描述
问候,
于 2013-04-30T12:50:11.253 回答