I’ve got no experience with JSP tags. I’m editing someone’s web page (installing a plugin for a table). The table is generated with what seems to be JSP tags.
They’ve got:
<c:forEach items="${row.fields}" var="rowField">
<td><c:out value="${rowField.htmlString}"/></td>
</c:forEach>
If ${rowField.htmlString} (whatever that means) is a text input box (just assume containing ‘input’ means it’s a text box), I need to add a class to the <td>.
How? Thanks in advance.
1 Answer