Iam displaying Columns from Object which in turn has many feilds but this CList is an array other are simple object like fName lName etc...
<display:table name="${form.results}" id="row" cellpadding="true">
<display:column property="fName" value="${row.fName}"/>
<c:forEach var="mycList" items="${cList}">
<c:forEach var="myCSummary" items="${mycList.CSummary}">
<c

ut value="${myCSummary.cType}"/>
<display:column property="cAType" value="${row.cAType}"/>
<display:column property="cType" value="${row.cType}"/>
</c:forEach>
</c:forEach>
</display:table>
I hope iam clear, Please reply can we use c:forEach to iterate through list of array object (CList)and which has CSummary , and CSummary has two elements CType and CAType.
// for example
CList=CSummary[5]
[0]=CSummary
// and CSummary this i have two elements
CAType="data"
CType="data"
Thank you,
Adil