I just read the related question why-doesnt-hdatatable-inside-uirepeat-get-correct-id
I have a list of PrimeFaces datatable on my bean, and I want to use ui:repeat to cycle through all these tables.. However the iteration is not working..
Any ideas?
My relevant piece of code is the following:
<ui:repeat id="searchTables"
value="#{searchBean.resultList}"
var="currentListOfLists">
<p:dataTable id="bindedTable"
binding="#{currentListOfLists}"
var="currentList"/>
</ui:repeat>