Is there a property in class MyForm named "columns"?It's in the base class that MyForm extends.
Can you post the block using tags and the error?
I got it working, although it is not what I would think of as elegant.
here:
<c:set var="row" value="0"/>
<c:forEach var="foo" items="${candidateSearchForm.candidateColumns}" step="7">
<tr>
<c:forEach var="cell" begin="${7*row}" end="${7*row+6}" step="1">
<td align="left" valign="top">
<c:if test="${!empty candidateSearchForm.candidateColumns[cell]}">
<html-el:multibox property="selectedColumns" value="${candidateSearchForm.candidateColumns[cell]}"/>
</c:if>
</td>
<td align="left" valign="top">
<c:if test="${!empty candidateSearchForm.candidateColumns[cell]}">
<c:out value="${candidateSearchForm.candidateColumns[cell]}"/>
</c:if>
</td>
</c:forEach>
</tr>
<c:set var="row" value="${row + 1}"/>
</c:forEach>