My problem is ui:repeat inside a h:panelGrid. Its a big table from a list of objects.. All objects are saved in one list.
I tried this:
<h:panelGrid columns="1000">
<ui:repeat var="item" value="#{item.list}">
<h:outputText value="#{item.string}" />
</ui:repeat>
</h:panelGrid>
but inside a panelGrid the ui:repeat tag is one column for the grid. So all items are in one td tag.
Is there a possibility to get the right column count?