I have a JSP where data is shown by use of a for:each loop. In this loop I have a multibox tag which will display checkboxes next to each corresponding row. A user will have the ability to select all or a few or none of the checkboxes and click print.How can I do this?
JSP PAGE LOOK :-- MULTIBOX PERSONNAME INVITATIONLIST ------------- ------------------ --------------------- PROPERTY:-- [STRINGARRAY] [STRING] [STRINGARRAY] <table><tr> <logic:iterate id="message" name="MessageForm" property="nameList"> <td> <html:multibox name="FORM" property="GETINVITATIONS"> <bean:write name="FORM" property="name" /> <bean:write name="FORM" property="selectedInv" /> <------ how to add String array to 'GETINVITATIONS'? </html:multibox> </td> <td><bean:write name="FORM" property="name" /></td> [NAME] <td> <bean:define id="List" name="FORM" property="invLst" type="java.util.ArrayList" /> <html:select style="width:200px;" name="FORM" property="selectedInv" styleId="selectedInv1" multiple="true"> [MULTIPLE INVITATION NAMES] <html:options name="List"/> </html:select> </td> </logic:iterate> </tr> </table> only name is adding to the GETINVITATIONS , selectedInv is not adding to it. only name printing in the console. how to do it? plase help me ...... -- View this message in context: http://old.nabble.com/please-solve-this-question-on-%3Chtml%3Amultibox%3E--tp27572824p27572824.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org