aspose file tools
The moose likes Struts and the fly likes One form, multiple radio button groups Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Application Frameworks » Struts
Reply Bookmark "One form, multiple radio button groups" Watch "One form, multiple radio button groups" New topic
Author

One form, multiple radio button groups

Andy Morris
Ranch Hand

Joined: May 30, 2004
Posts: 78
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 resent name="myId">
<tr>
<td align="right"><bean:write name="myId" property="myIdProperty"/></td>
<bean efine 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 resent>
</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).
 
 
subject: One form, multiple radio button groups
 
Threads others viewed
Variable for a form value?
re:struts dynamic radio buttons
help with html radio tag
Javascript and Struts Indexed Text Boxes
Radio button issue
IntelliJ Java IDE