Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

One form, multiple radio groups

Status
Not open for further replies.

morris2020

Programmer
May 30, 2004
2
GB
Hi all,

I'm very new to Struts and html & web interfaces in general and hope someone can help me a solve a problem.

A client needs to submit in a single form, selections from multiple radio button groups. What I mean here is, for an iteration of radio buttons (3 selections a piece), they need to select one from each iteration. So for each iteration, there are 3 choices and they need to select one from each.

My struts jsp is as follows and currently a user can only select one radio button from all of them, rather than one from each group and I'm not sure how to make them have one choice from each group - I need them to select one from every 3 but submit it in one form submission.

<table border="0" width="100%">
<html:form action="myAction.action">
<logic:iterate id="myId" name="myList" indexId="myIndex">
<logic:present name="myId">
<tr>
<td align="right"><bean:write name="myId" property="myIdProperty"/></td>
<bean:define id="myIdProperty" name="myId" property="myIdPropert" type="java.lang.String"/>
<html:hidden property="<Globals.STATIC_VARIABLE>" value="<%=myIdProperty>"/>
</td>
<td align="left">
<html:radio property="array" value="choice 1"/>Choice 1
<br>
<html:radio property="array" value="choice 2"/>Choice 2
<br>
<html:radio property="array" value="choice 3"/>Choice 3
</td>
</tr>
</logic:present>
</logic:iterate>
<tr align="right">
<td>
<br>
<html:submit property="submit" >
<bean:message key="button.myButton"/>
</html:submit>
</td>
</tr>
</html:form>
</table>

Cheers,

-andy

Oh also, I'd like to pre-select one of the buttons and also perhaps be able to set this on the fly, perhaps based upon a previous selection (accessing from a db via ejbs).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top