Jsp Code:
<tbody>
<c:forEach items="${noteList}" var="note" varStatus="count">
<tr id="<c:out value="${count.count}"/>">
<td id="noteType${count.count}">
Transaction Note
</td>
<td id="noteEnteredDate${count.count}">${note.formattedEnteredOn}</td>
<td id="noteEnteredBy${count.count}">${note.formattedUserInitials}</td>
<td id="noteContent${count.count}">${note.noteText}</td>
</tr>
</c:forEach>
</tbody>
view source code for above screen shot
what would be the issue for not generating tr id