I have a website on which are some lists displayed. Now, the lists are displayed in two columns, even if there are just 2 or 3 list elements (looks stupid), but I want be displayed in only one column.
Is there any way to add a if-else statement with > and < operators?
This is what I did, but doesn't work:
<ui:if value="#{graphicDynamic.elements.size < 3}" var="hotspots" >
...do the one column thing...
</ui:if>
<ui:else>
..do the other thing...
</ui:else>