| Author |
Format column display - JSTL
|
Crystal Bazil
Ranch Hand
Joined: Sep 28, 2004
Posts: 38
|
|
I have a table that is currently displaying like so: and now I would like for it to display like this: Is there an easy way to get this format with the code below or should I just rework my backend code? Any direction on this matter would be appreciated. Thanks!
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56529
|
|
Of course there is. You can either change the format of the HTML such that you can still emit them in order, or you can do some math on the current loop index in order to pick and choose which array element gets emitted for each iteration. Clues for the latter approach: varStatus gives you information on the current status of each iteration, including the loop index, and the [] operator can be used to index into the array or list. You might also ponder on the begin and end attributes to the <c:forEach> action. [ March 14, 2008: Message edited by: Bear Bibeault ]
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Format column display - JSTL
|
|
|