I've two jRadioButtons in Java application. Let's say Male and Female. Initially one is selected. While selecting another, the previous should be unselected and vice-versa. How to make it work? Also how can it be used to store in database?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can give same name to all the radio buttons, from which you want to select only one. That way, you will be able to select just one button out of all. This you can do by creating a Now, if you want to add the selected item to the database, just get the value corresponding to the name of See documentation and tutorial |
||||
|
|
|
What you need to use is a ButtonGroup component. Have a look at: How to Use the ButtonGroup Component |
|||
|
|
