I am using the code below to populate data using data table.
I want to edit data on one of the column and after editing I have to validate the value using onblur event.
I tried calling onblur event on td element but didn't get it .
Any help to achive this is greatly appreciated.
<table id='abc' border="1">
<thead>
<tr>
<th>Part Number</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<c:forEach items="${uploadData.partsList}" var="part">
<tr>
<td><c:out value="${part.partNumber}" /></td>
<td class="editableColumn" style="background-color:white"><c:out value="${part.quantity}"/>
</td>
</tr>
</c:forEach>
</tbody>
</table>