Hi,
I have stored some data in vectors in my action class and then set it is session.I am using it in
jsp page to display the data in html table.The vector contains 12 elements.
Just want to display all the data present in vector in three columns only using logic:iterate tag.
i am using
<tr>
<logic:iterate id="col" name="records">
<td>
<bean:write name="col"/>
</td>
</logic:iterate>
</tr>
But it is showing all the data in one row.
Thanks in advance.