Code of JSP page
<rich:dataTable id="journalTable" value="#{sessionBean.currentPageDataList}"
var="row" >
<rich:columns value="#{row}" var="column">
<f:facet name="header">
<h:outputText value="#{column}"/>
</f:facet>
<h:outputText value="#{column}"/>
</rich:columns>
</rich:dataTable>
I need to get "var" from dataTable because it creates from array of lists
List[] list = new ArrayList()[];
It looks similar to the two dimensional array and nested loops.
How can I get the access? or maybe there exsist another way?