JCheckBox is the Java Swing implementation of a check box, an item that can be selected or deselected, and which displays its state to the user.
2
votes
3answers
24 views
JCheckBoxMenuItem Default Value
I'm trying to add an options menu to my program, with the options changeable using JCheckBoxMenuItems. Whatever the value of these options is will be saved to a file when the program closes. The file ...
1
vote
1answer
20 views
Toggling JCheckBox value
im trying to toggle my jcheckbox. I have set the default to check jcb2. my jcb1 is working fine but my jcb2 can't seem to be toggled on. I added a println and found that it gets printed but my jcb2 ...
0
votes
1answer
50 views
Storing javascript checkbox(checked/unchecked) result in php mysql error
I am trying to accomplish live checkbox result with checked/unchecked checkbox.
My logic for checkbox works but now I want to store this live checkbox result in MYSQL So ...
0
votes
2answers
43 views
How to Store javascript checkbox result in php mysql
I am trying to accomplish live checkbox result with checked/unchecked checkbox. My logic for checkbox works but now I want to store this live checkbox result in MYSQL. So when I click on checkbox, ...
0
votes
0answers
13 views
Checkbox for music
Hello so i got a class Sound (class is named Geluid in my package). The problem is he has to play the music when the checkbox is checked and has to stop it if it isn't.
//QUENTIN STAS DE RICHELLE
...
-6
votes
3answers
75 views
Simple GUI code using Swing [closed]
Please do help me by customizing this program so that the checkboxes appear only when I click on the button "Click here to make any change". I have put up the source code here, I wanted to create ...
0
votes
1answer
30 views
isCellEditable true for a particular row on checkbox selected when isCellEditable false on checkbox deselected
I want disable editing Column 1 to Column 9 when Column 0 CheckBox is false and Checkbox value is true enable editing Column 1 to Column 9 when Column 0....How to do that?
0
votes
1answer
22 views
“Inline” list of checkboxes - auto line break
I have a JPanel (extended by my GeneralOptions class) implemented as:
public GeneralOptions() {
setLayout(new MigLayout("", "[grow]", "[][][][]"));
JLabel lblWyzywienie = new JLabel("Food");
...
0
votes
0answers
31 views
jcheckbox popup menu display
I am new to java. By following various sites, I managed to get a popup check box.
The link from where i got this used a button - when u click on the button, the popup menu gets displayed with various ...
0
votes
1answer
33 views
Setting the color for a JCheckBox cell in a JTable
I have a JCheckBox working in the last column in a JTable. But when I set the color to the cells in that column, it seem to overwrite the rendered object (JCheckBox).
The snippet of code below is ...
1
vote
2answers
79 views
Java Sorting data from a file using JCheckboxes
I'm trying to create a program that will take data in from a random access file and sort it based on whichever checkbox the user selects. The data should be sorted by either the bank account number, ...
0
votes
0answers
20 views
JCheckBox dissapears when repaint is called
I have a JCheckBox on top of an image, but whenever repaint() is called the JCheckBox disappears. If I click on the position where it initially was it becomes visible again.
I've tried setting it to ...
0
votes
2answers
188 views
Java Swing, Trying to replace boolean check-box in a JTable with an image-icon checkbox
So I have a JTable with check-boxes. I would like to have the check-boxes contain one image when they are "checked" and another image when they are "unchecked" (i.e., display images instead of a ...
1
vote
1answer
59 views
Efficeint way to manipulate multiple Checkbox items
I have a 6 JCheckBoxes in the UI and based one some user operations, I have to change the state of the JCheckBoxes, like enabling,selecting and making it invisible. So, instead of having the code as ...
0
votes
1answer
44 views
How to check the number of JCheckboxes checked? [duplicate]
I was wondering if there was a way to check the number of checkboxes checked in Java. I found plenty of instruction on how to do in in javascript but not Java. Thanks for you help!
0
votes
1answer
56 views
JCheckboxes into a JScrollPane
Is there a way to add jcheckboxes into a jscrollpane?
I have an array of checkboxes and I want to add them into a Jscrollpane, which i will then add into a JOptionPane. So far I have this:
Object[] ...
0
votes
0answers
103 views
JCheckbox in jtable storing values in mysql database
Hi I've this problem : I want to store the checkbox values in a mysql database and loading values for it from that database with this code:
String [][]Database = new String[500][10];
String ...
1
vote
2answers
44 views
Saving Checklist Selection in Java
Hello I am having trouble figuring out how to do the following. I am trying to enable the user to check the books he wants using my checklist, but I cannot figure out how to save his selections (the ...
-2
votes
1answer
62 views
how to deselect a checkbox?
I want to deselect a checkbox when i click the Clear button. the below code doesn't work.
jCheckBox1.setSelected(false);
jCheckBox2.setSelected(false);
...
0
votes
1answer
207 views
how to create jcombobox with jcheck box and multiple selection
I want to create JComboBox with checkboxes and multiple selection . i have created a list with check box after rendering the jlist . I dont know how to render it with jcombobox . Or is it possible to ...
1
vote
1answer
59 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 ...
1
vote
1answer
91 views
How to use JCheckbox array in JPanel array
I used the code from Hovercraft Full Of Eels and manipulated it a little to get the numbering as I wanted. It looks good now and I can read the status but I can't figure out how to manipulate the ...
0
votes
2answers
74 views
Know all the Checked item at when I press “ok” button SWING
When I click ok button it should print all the checked items. Here is what I tried.
I tried the following code, but its not working.
public class FilePermission extends JPanel implements ...
1
vote
1answer
74 views
About display panels with checkbox selected
I'm learning java Swing now and I got this demo code from online tutorial. You can display 4 panels with different color(red,blue,green,yellow) once you select the corresponding checkboxs.
But what ...
0
votes
1answer
132 views
uncheck checkboxes in java
In my program, I want to uncheck all the checkboxes whenever this method is called. Can someone explain why it isn't working? Whenever I call this method the checkboxes are still selected.
private ...
-1
votes
2answers
139 views
Formatting many checkboxes on Jframe or Jpanel
I have already a collection(List) of sentences. So I need to put every single sentences in a check box.The number of check boxes depends on the number of Vector Size. For example, I have 50 sentences, ...
0
votes
1answer
72 views
action when component state changed
I have a series of radio buttons generated as an array and displayed in a jPanel.
I want a series of checkboxes in a second panel to be enbled when the radio buttons are in output state but not in ...
0
votes
1answer
292 views
Adding JCheckBox Array to JPanel in Netbeans
I've been trying to add an array of JCheckBoxes to a JPanel in Netbeans that has been automatically generated by the Netbeans GUI, when I create an array of the JCheckBoxes and then try to add them to ...
0
votes
0answers
68 views
Add Selected JCheckbox item in JList
I have some problem when I add item in JList according for selected item JCheckbox,
And while i uncheck item the Jlist's item also removed.
This is my code, it just show 1 item in Jlist
...
1
vote
1answer
68 views
JCheckBox trouble
I have a next problem with Java GUI.
On my computer I see my application like this:
Normal picture
But I have another machine where I see this:
Problematic picture
I don't understand why it ...
0
votes
0answers
30 views
JCheckbox weird graphics rendering
I'm having a problem with a program I'm making:
I'm using JCheckbox instances and Graphics2D but it seems that the
JCheckbox is causing a weird graphical glitch:
For those who don't see the image, ...
2
votes
2answers
80 views
Setting button model makes check box non-operational
Why can't I set button model for JCheckBox?
The following code works and draws a window with one single check box in the center. Check box is operational:
public class JCheckButton_Test {
public ...
1
vote
1answer
123 views
Jcheckbox value in jtable based event trigger
I am working with java swings in netbeans.I have a jtable in my form which will be populated with values from mysql database.The table keeps changing dynamically based on which table the user ...
0
votes
0answers
39 views
change the fill color of a JCheckBox
I want to change the fill color of a JCheckBox since when is selected and disabled does not look good. This is my code:
public class JCheckBoxBG extends JCheckBox {
public JCheckBoxBG()
...
2
votes
1answer
148 views
Eclipse Wizard: how to add a checkboxlist?
I try to create a Eclipse wizard page with an checkboxlist.
First I created a JList with JCheckBoxes :
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
...
0
votes
0answers
171 views
change color of checkbox text at run-time
A JFrame object F1 has a JPanel object P1. The program reads values (time) from a database table and for each value read, it adds a checkbox to P1. Thus each checkbox text will be a time value ( ...
0
votes
1answer
87 views
Java: Swing - JCheckBox at compare 2 files
I am trying to do if CheckBox is true to show locations where two files start be differ.
Code:
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;
public class ...
0
votes
2answers
174 views
Unable to set background color of checkbox at runtime
There is a class AgentHome which extends JFrame.
AgentHome has a JPanel rem_panel. Checkboxes are added dynamically into rem_panel…number of checkboxes depending on the number of entries in the ...
0
votes
2answers
414 views
JTable dynamic JCheckBox needs 1 click to uncheck, but 2 clicks to check
I am fairly new to java, so please excuse me for any foolish mistakes i make ...
I have a JTable of 2 columns in which the 2nd column can have 4 types :
a column in which values cannot be changed
a ...
0
votes
1answer
69 views
How to get item in a JList and remove it?
I am unable to remove an item from JList. The following code has been put on the JButton.
DefaultListModel model = (DefaultListModel) list1.getModel();
int selectedIndex = ...
2
votes
2answers
130 views
accessing swing component of other class
I have two classes mainpanel.java and subpanel.java. The subpanel.class contains a checkbox and some labels. I want to change the setSelected() and setText() of these components when i click some ...
0
votes
1answer
39 views
Adding KeyStroke to JCheckBox
I want to add KeyStrokes to group of CheckBoxes ,so when user hits 1, keystroke will selected / deselected first JCheckBox.
I have made this part of code ,but its not working, can somebody point me ...
2
votes
2answers
98 views
Java - Making a Checkbox Deactivate a JTextField
I'm newbie in programming java, but, I need to make a CheckBox Deactivate a JTextField when it's checked, but i don't have success in this, i tried if(JTextField.isSelected()) but unsuccessfully.
Here ...
0
votes
2answers
116 views
How to Prevent Redirection to the selected Tab in JTabbedPane?
i've created an application in java swing.
The application is a JFrame with a JTabbedPane with 3 tabbedpanes.
In the first pane there is a progress checkbox, if the checkbox is select then on ...
2
votes
1answer
252 views
Remove checkbox from CheckBoxTree node
I'm using a CheckBoxTree component to get a special kind of JTree with checkboxes. However, I want to be able to have no checkbox on the high level nodes, because they should never be checked, they ...
12
votes
3answers
185 views
Having a Left and Right Aligned Label inside a JCheckBox
I'll start with what I want then go from there:
+------------------------------------------+
|[] jCheckBox jLabel |
+------------------------------------------+
Basically I ...
2
votes
2answers
2k views
Get Selected Rows in JTable using AbstractTableModel
I have a JTable using AbstractTableModel where I have a JCheckBox in the first column for selecting rows. Now, I need to get the selected rows from the table which are checked. Right now, I am ...
-1
votes
1answer
97 views
JCheck box when placed in JTable cell not responding to mouse clicks
I am a newbie to Swings
Can some on please help me
I have a scenario: in which I placed JCheck boxes in the 3rd column of JTable by overriding its column class to return Boolean for the 3rd ...
1
vote
1answer
228 views
Align CheckBox in a dailog
I want to align a check box(red highlighted area)According to other respective fields.
This is main method i am using to generate this
public class DialogTesting extends JFrame{
public static ...
2
votes
0answers
132 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 ...



