how to hightlight a row

Before i used to have a single row for a record since i dinot have enough space to display two more columns(data) . i am displaying a one record in two rows

eg.

name1 ,name2,....

name4,name5

But when i move my over the record i have to hightlight both the rows. I would appreciate If you could provide me assistance in regard to my problem.

small snippet from my code

<c:forEach var="licenseId" items="${masterLicenses}" varStatus="licenseId">

<c:choose>

<c:when test="${licenseId.count % 2 == 0}">

<tr class="TReven" onMouseOver="this.style.backgroundColor='#FFFF99'" onMouseOut="this.style.backgroundColor='#E9EDF2'">

</c:when>

<c:otherwise>

<tr class="TRodd" onMouseOver="this.style.backgroundColor='#FFFF99'" onMouseOut="this.style.backgroundColor='#E9EDF2'">

</c:otherwise>

</c:choose>

<tr>

<td width="125" align="center">

<font size="-1" face="Verdana, Arial, Helvetica, sans-serif"><c:out value="${licenseId.current.board}"/></font>

</td>

</tr>

<tr>

<td width="100"> </td>

<td width="200" align="center">

<font size="-1" face="Verdana, Arial, Helvetica, sans-serif"><c:out value="${licenseId.current.name}"/></font>

</td>

<td width="237" align="center">

<font size="-1" face="Verdana, Arial, Helvetica, sans-serif"><c:out value="${licenseId.current.DBAName}"/></font>

</td>

</tr>

[1659 byte] By [SubhaMania] at [2007-11-27 9:49:58]
# 1
Easiest way would be to nest another table in the row.You can replace that whole c:choose by a single c:out by the way. For example:<tr class="<c:out value="$licenseId.count % 2 == 0 ? 'TReven' : 'TRodd'" />" >
BalusCa at 2007-7-13 0:18:32 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...