I'm trying to populate a list of checkboxes, some checked, some not from the database. I followed the Husted Tip#7 but still have problem. My actionform has 2 arrays 1 for selected (selectedFormPropertyArray), 1 for all checkboxes (allFormPropertyArray) populated fine. But when I go to the jsp, it fails render. This is what I have in JSP. What's wrong?
<logic:iterate id="item" property="allFormPropertyArray"> <html:multibox property="selectedFormPropertyArray"> <bean:write name="item" property="itemPropertyID"/> </html:multibox> <bean:write name="item" property="itemPropertyName"/> </logic:iterate> Please help? Thanks.