Hi All,
I have a row in a table, that uses "forEach" :
I can have a very long row this way if there are many items. Let's say, I want to have 6 <td>-s at a maximum in a row vertically. The 7th one should come under the first one. ...and so on. What is the best way (is there a way?) to solve this?
(...maybe something with mod / div ?)
Any help appreciated.
heeeep
I have a row in a table, that uses "forEach" :
Code:
<table>
<tr>
<c:forEach items="${something}" var="somethingelse">
<td>
...
<td>
</c:forEach>
</tr>
</table>
I can have a very long row this way if there are many items. Let's say, I want to have 6 <td>-s at a maximum in a row vertically. The 7th one should come under the first one. ...and so on. What is the best way (is there a way?) to solve this?
(...maybe something with mod / div ?)
Any help appreciated.
heeeep