3 Rows per list item in table
Hi all.
In most the screens I have, each value object in my list creates one row in my table which is fine I have no problems with that.
However I have the need to display a table where each value object in the list has 3 rows of data so I need one row to create HTML like this...
<TR>
<TD rowspan='3'> An ID </TD>
<TD> data </TD>
<TD> data </TD>
<TD> data </TD>
</TR>
<TR>
<TD> data </TD>
<TD> data </TD>
<TD> data </TD>
</TR>
<TR>
<TD> data </TD>
<TD> data </TD>
<TD> data </TD>
</TR>
How do I do this in JSF?, I have had to do this as a plain JSP page for now but I hope there is a way to do this. Any help greatly appriacated
TIA
Dale

