I have a code that is similar to the following
<ui:repeat value="#{bean.listOfA}" var="a">
...
<ui:repeat value="#{a.listOfB}" var="b">
...
</ui:repeat>
</ui:repeat>
The problem is that the items are displayed randomly each time .. I would like them to be in the same order every time I load it.
any ideas?