I have string list named dataSetUris. I tried to make if condition on it. It returns true but I cant print the command buttons.
What is my wrong here? Thanks for help.
<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>