Multiple Sets of Radio Buttons

W

wwcp

Is there a way of having multiple sets of Radio Buttons in the same Form? I
have several lines of "single answer only" questions, but FP treats all the
Radio Buttons as one question. Thanks so much for your help in advance..
(This has been a very helpful Group.)

Palmer
 
W

wwcp

Don't worry about it.... I put on a different set of glasses and forced
myself to read the Help section - a little closer... Groups was the
answer... Sorry about posting too quickly.

Palmer
 
A

Andrew Murray

you have to name each "set" of buttons with the same name

eg

<input type=radio name="radio1" value="option1">
<input type=radio name="radio1" value="option2">
<input type=radio name="radio1" value="option3">
<input type=radio name="radio1" value="option4">
<input type=radio name="radio1" value="option5">

<input type=radio name="radio2" value="option1">
<input type=radio name="radio2" value="option2">
<input type=radio name="radio2" value="option3">
<input type=radio name="radio2" value="option4">
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top