JRadioButton is the Java Swing implementation of a radio button.
0
votes
2answers
38 views
Java Button Handler
I am having an issue handling button events. I am creating a program that lets the user select the type of pizza they want and the program calculates the price of the pizza. I have my layout setup, ...
1
vote
1answer
45 views
retrieving what swing radio button is selected from a group
User selects either the Admin radio button or the User radio button (2 of which are contained in a group). If admin radio button is selected the user is brought to the adminDashboard, else the user is ...
0
votes
2answers
31 views
JRadioButtons in a custom JScrollPane not appearing?
I'm writing an IM client GUI for a project. On the left of the window, I want a scrolling pane that has radio buttons for each active user, so that when a New Chat button is pushed, a chat will be ...
-1
votes
3answers
44 views
How do I reset/clear JRadioButton in Java [duplicate]
How do you reset/clear a Radiobutton? clearing a TextField is as simple as surenameField.setText(""); is there any similar way with the RadioButton?
0
votes
1answer
26 views
ENUM and radiobuttons Java
I have problems with enum and radiobuttons. I'm making a program where the user can choose different types of payments, the types are saved in class Type.java, see code:
public enum Type
{
...
0
votes
1answer
52 views
Why does my ButtonGroup give me an “<identifier> expected” error?
I'm teaching myself about Java's swing components by creating a dialog box with three radio buttons, a text box and a "go" button. I've gotten to the point where I'm adding the Radio Buttons, and am ...
0
votes
1answer
53 views
How use ActionListener in JRadioButtons
I want to do a very simply "Paint" in Java.
Now i have troubles because i dont know how to use the actionListener in the JRaddioButtons to change the colors of the line that i want to draw.
I show my ...
0
votes
2answers
76 views
using JList of Swing
I have a 3 Jlist, the first contain the name of application. the second is used to put the name of application to install, the third the name of application to uninstall. but it is not beautiful. I ...
1
vote
1answer
31 views
Invisible JRadioButtons
I have three different JRadioButtons that are all added to one JPanel. When I add the JPanel to the JFrame, only the lvl3 JRadioButton shows up. If I comment that line out, then none of the buttons ...
2
votes
2answers
53 views
how can I define label position of a jRadioButton on Netbeans?
I'd like to define label position of jRadioButtons on a buttonGroup on Netbeans so the label would be positioned under its radioButton. Can it be done?
0
votes
1answer
175 views
how to set radio buttons initial value on Netbeans for a Java desktop application?
This app I'm working on has three radio buttons, but I need to open the JFrame with one of them selected and the other two not.
Upon the JFrame load, I call the following method:
private void ...
0
votes
1answer
50 views
Replacing a JButton in java
I'm not sure how I can go about replacing a JButton with a JRadioButton when the JButton is clicked. So say if I had Jpanel set as a gridlayout which lays out 4 rows (3 JLabels and a JButton). So when ...
0
votes
2answers
45 views
JRadioButton Input not responding
i'm new to Java, and programming in general.I am trying an exercise where i create radio buttons which change the background colour when selected.At the moment i am using Eclipse IDE.
Eclipse is not ...
0
votes
1answer
73 views
Editing Radio Button in Java
I have GUI screen which lets you set the privacy of a Contact from a selection being made through RadioButton. Although I can add the selection to the database like this...
private void ...
-1
votes
1answer
101 views
Java JRadioButton
I have problem with this code
when I click on file and click on new ,new panel comes to screen and when I want to change JRadioBox status to change Label status,Label status changes but also the panel ...
1
vote
1answer
57 views
JMenu disappears when JRadioButtons or JCheckBoxes are used
I have created a JMenuBar with a Pizza JMenu. The JMenu has 3 JRadioButtons and 2 JCheckBoxes that appear when menuItems are scrolled over. The problem is that when I click on a JRadioButton or ...
0
votes
2answers
59 views
Swing JRadioButton autoselect after get focus
I have three JRadioButtons in ButtonGroup. With keyboard navigation with TAB I can go through this JRadioButtons (change focus), with SPACE I can select JRadioButton with focus. Is it possible that ...
0
votes
3answers
104 views
WPF if statement based on radio button checked or not
I'm having difficulty with something which seems like it should be very simple. I'm coming from Windows Forms and starting up with WPF. I think I have a simple syntax issue but I can't seem to find ...
0
votes
1answer
44 views
Why is my jradiobutton only taking once?
I didnt group my jradiobuttons so that users can select multiple choices and i can store in the nodes array..but it only reads once. What is wrong with the code? Please enlighten me
private String[] ...
1
vote
3answers
66 views
Adding array of JRadioButtons with variable length to a JWindow
Hello everyone I was trying to add an array of variable length to a JWindow but I am getting a run time error. Want help from here ..
Here is my code :
package components;
import ...
1
vote
1answer
63 views
Adding ActionListener to JRadioButton & JComboBox
So what I am trying to achieve here is, if the first radio button and the first option from the first combobox is selected then I want to display the food under that category, if it is first radio ...
1
vote
1answer
48 views
Possible to prevent the firing of actionlistener on one occasion?
The situation: The states of a set of components are saved to an XML file. Everything saves fine. I am trying to load the same data to the same components (although the rest of the application may be ...
1
vote
1answer
104 views
Multiple Output Issue JRadioButton, default selection, else if, ActionListener
I am a new stack user and brand new to Java, so apologies in advance if this is in anyway unclear or the wrong terminology is used.
I am looking to assign a base value if no selection occurs to a ...
2
votes
3answers
68 views
JRadionButton unselect automatically
I have a jframe that ontains two JRadioButton.
public class jradioButtontest extends javax.swing.JFrame {
public jradioButtontest() {
initComponents();
}
@SuppressWarnings("unchecked")
// ...
1
vote
1answer
80 views
what do these swing color names mean
Some of the names are clear, like background, foreground, focus etc. But some are just confusing, like light, hightlight, shadow, darkshardow etc. I noticed that these are consistently used in swing ...
0
votes
2answers
50 views
Make a JRadioButton unclickable
I wonder if it is possible to make a JRadioButton unclickable? I have implemented some functions in an application, but i would still like to show the name of the functions yet to be implemented. The ...
1
vote
2answers
124 views
How do I set the location of Radio Buttons?
I want to create two radio buttons for the "Gender" label. Here is what I got:
maleRB = new JRadioButton("Male", true);
femaleRB = new JRadioButton("Female", false);
radioGroup = new ButtonGroup();
...
1
vote
1answer
207 views
Clear RadioButtons on Java Netbeans
I have a program which prompts users to select a choice out of four options (from a group of RadioButtons). Once the user has made a choice he/she clicks a button and then receives a message. After ...
2
votes
1answer
85 views
JRadioButtons not working
I'm having an issue where my JRadioButtons will not appear until moused over. I've looked up this issue before and it seems most people have solved it using layouts. However, I am not supposed to use ...
0
votes
4answers
131 views
Clicking on radiobutton gives old value?
I am quite new to java, so please don't be too harsh :)
I have a JTable with a column with 3 JRadioButtons in each cell.
The JRadioButtons display correctly, and the correct JRadioButtons are ...
1
vote
2answers
50 views
How to change the height of a radiobutton
I have a JTable in which 1 column contains 3 radiobuttons per cell
mgrdData.getColumnModel().getColumn(intCol).setCellRenderer(new RadioButtonRenderer());
RadioButtonEditor butEdit = new ...
0
votes
4answers
66 views
How to show that JRadio button is selected and deselected?
I have 5 JRadio buttons on my swing application. When I click my Jradio button. I have created a joption dialogue to display that it is clicked. But when I unselect it it also displays that it is ...
3
votes
1answer
90 views
JRadioButtonMenuItem with a tick
I am wondering if it's possible to change the default radio button menu item appearance in Java Swing.
By default a circle with a dot inside will indicate the selected state of the button, but i just ...
2
votes
3answers
195 views
How to structure my attendance program [closed]
I'm in the process of making an application that keeps attendance. Once I have a list of students, how would I go about displaying them all and checking whether they are present or absent. I intially ...
1
vote
1answer
103 views
JRadioButton selection color
When any Radio Button in my Java UI program is selected, the selection is shown by a black dot. I want to make it Green. I'm using Java Swing. I followed the answer given to this SO Question , but ...
1
vote
3answers
159 views
Issues with ItemListener attached to JComboBox
Please have a look at the following code
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class ComboIssue extends JFrame
{
private JRadioButton ...
2
votes
1answer
126 views
JRadio Buttons are “Hiding” in GridBagLayout
Please have a look at the following code
package normal;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Form extends JFrame
{
private JLabel heightLabel, ...
2
votes
1answer
116 views
How to enable a disabled JRadioButton
I have two JRadioButton with ImageIcon for each one. Because of the ImageIcons I'm using, I need to give the appearance that one button is selected and the other one is not selected. To do this I'm ...
1
vote
2answers
106 views
can't set JPanel color and JRadioButton invisibility
I have problem with setting JPanel and JFrame color to white, though I used panel.setBackground(Color.white). The second problem is that setting ImageIcon in JRadioButton constructor causes that ...
1
vote
2answers
73 views
How to use Image in JRadioButtons instead of text
I have a group of JRadioButtons. I want to use image instead of text in my JRadioButtons. So I believe i will have to use this:
JRadioButton(Icon icon, boolean selected)
Now the issue is that I ...
1
vote
2answers
288 views
How to add JRadioButton to two columuns of a JTable and ButtonGroup them.
I want a JTable which consists of 2 columns(having RadioButton) Active and Inactive such that if Active Column is Selected then Inactive RadioButton gets Unselected and Vice versa means that in a ...
0
votes
2answers
454 views
Selenium Webdriver C# why do I have to click twice to select radio button
Selenium Webdriver C#- why do I have to click twice to select radio button?
Here is the code:
weItem_TypeRadio = _driver.FindElement(By.CssSelector("input[name*='"
+ stcItemType
...
1
vote
1answer
490 views
How to add radio buttons in button group?
After dragging and dropping button group in Netbeans 7.2, how to add radio button in that button group?
0
votes
2answers
82 views
Trouble with RadioButtons and booleans connection
Well its weird. I am not good with radiobuttons by the way. But I made a JPanel program in netbeans which includes a RadioButton. You enter all this information with JTextFields(no problem) and then ...
2
votes
0answers
131 views
Checkboxes and Radio Buttons Together in a JTree
I'd like to create a JTree that more or less has the following structure (with a hidden root node)
[No Option] Main Dish
[Radio Button] Steak
[Radio Button] Fish
[Radio Button] Filet ...
1
vote
1answer
101 views
JRadio Button Selection issue
I dont know if this is a silly issue that i am having or what but for the life of me i cant figure out the solution. I am writing a quiz program with 20 questions. The program asks each question and ...
0
votes
0answers
33 views
isSelected method for jRadioButton doesnt work
my isSelected method for the radio buttons are not working, even if i select them when i run the program, i am new to java gui coding so plz explain according to that, i am posting the whole gui's ...
2
votes
1answer
64 views
how to make an interface that works like the JRadioButtons switching
Can anyone please tell me how to make an interface like that which is been shown below.
Right now i'm using two JRadioButton for implementing that task.
My code which i've done is shown below
...
1
vote
1answer
140 views
Use of image icons in java and implementing online/offline user (view)functionality with JRadio buttons
I think the question title is quite confusing(didn't find much words for the problem), I will try to explain the problem below.
I want to include a feature similar to various chat applications. These ...
0
votes
1answer
132 views
listening to events on RadioButton in Scala Swing
how do i listen on events on a radiobutton in scala? i have the following code, but for some reason the reaction is not executed. this is a Dialog, and i am looking to listen on radiobutton selection, ...








