posted 14 years ago
Friends.,
I found out one solution that is almost similar to what I need,using in combination with <logic:iterate>.But the headers are printing two times.
Here I am showing the snap shot of the code.
<logic:iterate id="student" name="classForm" property="studentList">
<display:table name="student.subjectsMarksList">
<display:column property="sub1" />
................................
</display:table>
</logic:iterate>
It is printing all the values but header is repeating as follows.
sub1 sub2 sub3
---- ---- -----
50 20 30
---- ---- -----
sub1 sub2 sub3
---- ---- ----
20 40 40
---- ---- -----
Please help me to solve it.
Thanks in advance.