| Author |
want to get the value of selected radio button
|
jaimin gohel
Greenhorn
Joined: Jul 30, 2008
Posts: 13
|
|
I am having 2 radio button and i want to get a value on selection of any one of the radio button. like if "YES" it selected value should be "True" or boolean "t" and same way if the radio button "NO" is selected value should be "False" or boolean "f". i am not able to find any sort of event on the selection of the radio button.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
That's because the methods for retrieving and setting the state is not in JRadioButton but its superclass, AbstractButton. They're called isSelected and setSelected.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: want to get the value of selected radio button
|
|
|