All my check boxes stay unchecked even though the test variable has been set to true on the server side. When i inspect the code all checkbox values=true.
<c:if test="${not empty myObject.objectList}">
<c:forEach items="${myObject.objectList}" varStatus="index">
<tr class="cdata">
<td align="center">
<td><form:checkbox path="test" /> <c:out
value="${testName}"
/></td>
</td>
</tr>
</c:forEach>
</c:if>