help with test with radio buttons
help with test with radio buttons
(OP)
Hello,
I just started using struts and I already have a problem :). I need to fill a form with questions and answers, something like a test - first question, radio buttons answers, second question ... and so on. My major problem was that when I try to populate the answers all radio buttons have same group(so I can select only one answer for all questions). How can I set different radio groups? Is it a specific way I can do this whole task?
Thank you in advance!
Best regards
I just started using struts and I already have a problem :). I need to fill a form with questions and answers, something like a test - first question, radio buttons answers, second question ... and so on. My major problem was that when I try to populate the answers all radio buttons have same group(so I can select only one answer for all questions). How can I set different radio groups? Is it a specific way I can do this whole task?
Thank you in advance!
Best regards
RE: help with test with radio buttons
Your question may be pure HTML. The radio buttons with identical name are in the same group :
CODE
<input type="radio" name="sex" value="male"> Male
<input type="radio" name="sex" value="female"> Female
<br>
Age :
<input type="radio" name="age" value="minor"> Minor
<input type="radio" name="age" value="major"> Major
Feherke.
http://rootshell.be/~feherke/