Hi! Is something like the following snippet possible to do?
<c:forEach items="${MyForm.list}" var="entry">
<tr>
<td>${entry.name}</td>
<td>${entry.forced}</td>
<html:checkbox property="entry.checked" />
</tr>
</c:forEach>
Of course this code won't do it, but I hope you're getting my idea. I'd like to
iterate over a collection and create a <html:checkbox /> for every item in it.
This checkbox should set the "checked"-variable of an entry. Is such a feat
possible?
Thank you
Bernhard

