This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Swing / AWT / SWT and the fly likes JRadioButton Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "JRadioButton" Watch "JRadioButton" New topic
Author

JRadioButton

Shanthala Rao
Greenhorn

Joined: Nov 13, 2000
Posts: 8
I have 2 JRadioButtons which I add to a JRadioGroup.
Initially both radiobuttons are not selected.
I have a JButton also.When the user selects a radioButton & presses the JButton I want both the radiobuttons to be not selected.I tried to do this by using
JRadioButton.setSelected(false).But this is
not working. Please help..
Thanx,
Shanthala
Wirianto Djunaidi
Ranch Hand

Joined: Mar 20, 2001
Posts: 195
The problem lays with the ButtonGroup. Once you add your
JRadioButton(s) into the ButtonGroup, the ButtonGroup will
MAKE SURE that once it selected that there will always one
that is selected.
So to clear your JRadioButton you need to do:

  • remove all your JRadioButton from the group
  • do setSelected(false)
  • add them all back into the group

  • I would love to hear if there is another way to do it.
    -Ryo
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: JRadioButton
 
Similar Threads
radiobutton problem and classCastException problem
How can i insert JRadioButton to Cell in JTable
Use of RandomAccessFile class under Swing
inconsistency in radiobutton
jbutton refresh