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>

