• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

One form, multiple radio button groups

 
Ranch Hand
Posts: 78
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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).
 
I can't beleive you just said that. Now I need to calm down with this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic