It's the first post I wrote here, so, please be kind to me if I'll do something wrong (and please, excuse my English ...)
Well, my problem is that I have to use a DataTable to show some data. Data is contained in some Lists. Every list is a different column, so I have x list to show x columns.
I've tried this way, but it shows non result (blank table):
<p:dataTable value="#{ass.colonne[0].value}" varStatus="srows" var="itemColonna" id="tableAssociazione" styleClass="uc-table-style" resizableColumns="false" reflow="true">
<p:column id="status" resizable="false" width="35" styleClass="text-center" headerText="">
<span class="circle-status #{ass.configurato?'green':'red'}"></span>
</p:column>
<ui:repeat var="cols" value="#{ass.colonne}" varStatus="scols">
<p:column id="colonna_${tsrows.index}_${tscols.index}" resizable="false" styleClass="text-center" headerText="#{cols.labelColonna}">
<h:outputText value="${ass.colonne[scols.index].value[srows.index].outputVal}"/>
</p:column>
</ui:repeat>
</p:dataTable>
No Error messages are displayed, so I don't know what's happening.
Thanks everyone for your cooperation.