Hi,
All the examples I've seen of using the above tag use the logic:iterate tag to output to the page.
Does anyone have an example of how to this with JSTL?
My attempt is:
<c:forEach var="service" items="${services}" varStatus="status">
<TR>
<TD><c:out value="${service.name}"/></TD>
<TD><html:multibox value="${service.status}"property="selectedServices"></html:multibox></TD>
</TR>
</c:forEach>
where services is an ArrayList in session with all available services and selectedServices is the array of Strings in my form class.
The above displays all the values in services correctly but doesn't exhibit any interaction between the checkboxes on the page and the selectedServices array.
Thanks, Andy
_________________________________________________________________
Get ready for school! Find articles, homework help and more in the Back to School Guide! http://special.msn.com/network/04backtoschool.armx
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]