ui中的varstatus属性:在jsf 1.2中重复

时间:2012-05-01 10:24:37

标签: jsf facelets jsf-1.2 uirepeat

如何在JSF 1.2中的ui:repeat中实现varstatus属性的功能?如果它不能在版本1.2中使用,那么获取arraylist的第一个和最后一个项目的可用选项有哪些?

请提供您的想法,帮助我。

1 个答案:

答案 0 :(得分:8)

改为使用JSTL的<c:forEach>

<c:forEach items="#{bean.items}" var="item" varStatus="loop">
    <c:if test="#{loop.first}">First</c:if>
    <h:outputText value="#{item}" />
    <c:if test="#{loop.last}">Last</c:if>
</c:forEach>

或者使用Tomahawk的<t:dataList>代替。

<t:dataList value="#{bean.items}" var="item" rowCountVar="count" rowIndexVar="index">
    <h:outputText value="First" rendered="#{index == 0}" />
    <h:outputText value="#{item}" />
    <h:outputText value="Last" rendered="#{index + 1 == count}" />
</t:dataList>