<c:if>在<ui:repeat> </ui:repeat> </c:if>中无效

时间:2014-10-10 15:46:17

标签: jsf jstl facelets uirepeat

我有一个名为dataSetUris的字符串列表。我试图制作条件就可以了。它返回true但我无法打印命令按钮。

我错在哪里?谢谢你的帮助。

 <ui:repeat var="item" value="#{result.dataSetUris}">                                           
   <c:if test="${item.length() > 0} ">                                          
     <p:commandButton value="Click" onclick="window.open('#{item}')" ></p:commandButton>        
    </c:if>                                                                                                          
 </ui:repeat>

0 个答案:

没有答案