Richfaces中标签判断最后一个元素的方法

Richfaces中 标签判断最后一个元素的方法
<a4j:repeat value="#{personList}" var="person" rowKeyVar="rowIndex">
<img src="img/arrow.png"> </img>
<h:outputText rendered="#{rowIndex == personList.size() -1}" value="#{entry.description}"/>
</a4j:repeat>

使用rowKeyVar按照上面的方法判断就可以了

你可能感兴趣的:(Richfaces中标签判断最后一个元素的方法)