Hi All,
I need to display list of objects in turn each object contains one more list using jsf2.0 datatable. I mean the requirement is like this.
StudentVO {
private
string name;
private string failedSubjects[];
private string passedSubjects[];
}
Here i need to display list of students in datatable.
<h:dataTable id="studentID" var="studentVO" value="#{demandManagedBean.allStudentsList}" >
<h:column>
<f:facet name="header">
name
</f:facet>
</h:column>
<h:column>
<f:facet name="header">
failedSubjects // how to retrieve the these failed objects?
</f:facet>
</h:column>
</h:datatable>