可以在<c:if>
里面使用<a4j:repeat>
吗?
我需要渲染<br />
每 4 个元素。我尝试了以下方法:
<a4j:repeat value="#{MBean.sucursal.events}" var="item" rowKeyVar="idx" >
<h:outputText value="#{item.eventDescription}" id="item1" />
<c: if test=#{idx % 4 == 0}>
<br />
</c:if>
</a4j:repeat>
但是,它根本不渲染<br />
元素。
无论如何,我怎样才能达到要求?