| Author |
radio buttons selection
|
alex pandiyan
Greenhorn
Joined: Aug 25, 2004
Posts: 10
|
|
Hi all, I have 4 radio buttons in my jsp page. The first one should be selected while it is loaded. So,am using the below code: <input type="radio" name="radio1" value="first" checked> The user should be able to select only one radio button. How to do this in jsp? <input type="radio" name="radio2" value="second"> <input type="radio" name="radio3" value="third"> <input type="radio" name="radio4" value="fourth"> If i try the above code,all radio buttons get selected. I need the user to select any one radio button only. Just plain jsp code is needed.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56180
|
|
|
This is purely an HTML question. Moving to the HTML/Javascript forum.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56180
|
|
|
For the radio buttons to be considered a 'radio group' they must all have the same name.
|
 |
 |
|
|
subject: radio buttons selection
|
|
|