Tagged Questions
-3
votes
1answer
38 views
Get if someone is using a JComboBox?
Like the title says, i need to know if someone is using a combobox.
i.e. when the box is dropped down.
Is there any method to get this? Maybe an actionlistener?
0
votes
2answers
36 views
How to directly show a dynamically added item in the popup, without doubleclicking?
I have this PopupMenuListener
public class MyPopupMenuListener implements PopupMenuListener {
protected JTable _table;
public MyPopupMenuListener(JTable table) {
_table = table;
}
@Override
...
0
votes
1answer
47 views
Check JComboBox Value
I need to create a new method to check the value of the selected item in combo box.
That combo box is populated from database.
This is how get the selected item:
combo.addActionListener(new ...
1
vote
2answers
27 views
How to change a JTextField based on a JComboBox selection
This is just a silly program I am working on for school but I am having some trouble. I have a JComboBox and based on what the user selects I want to change the text field. I'm having some trouble ...
0
votes
2answers
34 views
JComboBox getSelectedItem is return correct values but .equals not working
So I have a JComboBox, I am able to select each of the items within it just fine. In the System.out.print I get the correct values, though when I preform a .equals on the string "Create Map" it does ...
0
votes
0answers
44 views
JComboBox border. How to remove? [duplicate]
How do you take away the blue border that comes as default on a JComboBox component?
I've tried:
playlist1.setBorder(new EmptyBorder(0, 0, 0, 0));
0
votes
0answers
33 views
Dynamic values in JComboBox
I have a row of JComboBox's. I would like the values in the next to be based on the values to the preceding one.
public static String dataBases[] = {"Choose DB", "Calls", "Cash", "Invoice Books"};
...
-1
votes
1answer
29 views
Text field not responding to combo box selection
Am kind of a beginner. I have an application in which I have a combo box. The combo box has two strings/items 1 being "Add" and 2nd being "Minus". If I select "Add" from the combo box my jText field ...
0
votes
1answer
31 views
actionPerformed from an array
My Java JComboBox is made up array for loop
Assume that combo box is will list:
"Argentina Vs USA" // array[0]
"Brazil Vs Canada" // array[1]
"Canada Vs Netherland" // array[2]
"Holland Vs ...
0
votes
3answers
29 views
Update JComboBox popupMenu
I have a JComboBox with only one value in the start and have one MouseListener connected to it. When I click on the JComboBox I fill it with some new values. But the popupMenu are of the size of one ...
1
vote
1answer
38 views
Java JComboBox control scrollbar position?
I'm trying to help my girlfriend with a simple java program (using NetBeans' swing GUI builder). You're supposed to select a randomly placed item from the JComboBox as fast as you can, then it will ...
0
votes
1answer
29 views
Replacing JList through Combobox selection
I'm creating a word search game with a ComboBox that has the different game itemsand a JList that shows the words to be found in the word list. When the user clicks on an item in the combobox, the ...
2
votes
1answer
44 views
Custom Font for JComboBox
I would like that to know how to change the Font for the displayed/selected value in a JComboBox. E.G.
The upper rendering of Aharoni (image courtesy of this answer).
I can change the list values ...
0
votes
2answers
37 views
JComboBox not displayed
I'm trying to put a JComboBox on my JFrame, if i clicked shows the contents of the combo, but it was not showed on the JFrame.
I already tried with: .setVisible(true), .setEnabled(true), etc.
Here ...
0
votes
1answer
31 views
Using JComboBox as a Search
I want to know how to get an JComboBox to auto suggest the elements when we type in the combo box. For an example, If I had loaded a JComboBox with these names using MySQL, [Amila, Nimila, Nikila, ...
0
votes
1answer
33 views
Jcomponents getName
how to get JComponent name(JComboBox,JCheckBox,JTextComponent...etc)
how i can get fieldName for put this name to HashMap, for example:
HashMap<String,String> map;
public ...
0
votes
2answers
29 views
multiple JComboBox in one JPanel
I have a JPanel with three JComboBox. Here is the code I wrote:
public class Main {
private static String pat_order;
private static String PS_selection;
private static String ovlp_selection;
...
0
votes
1answer
25 views
error to get the value from JComboBox
I created a JComboBox and I want to get the value from it. Here is the code that I wrote:
final JComboBox jc = new JComboBox();
jc.addItem("ARR");
jc.addItem("SRR");
...
1
vote
1answer
60 views
Add a JCombo column to a JTable
This type of post has been dealt with before, but I am having issues based on how my code is structured.
I am just simply trying to add a JComboBox to all rows in my last column. The code is below.
...
0
votes
1answer
65 views
Usability features for JComboBox within JTable
I'm trying to build a table which includes JComboBoxes as both the renderer and editor components. This mostly works fine, however there are two things I can't seem to solve.
Tabbing between cells ...
0
votes
0answers
28 views
Java - Keeping the last selected object of a ComboBox at the top while considering an “addPopupMenuListener()”
I have a JList whose objects are keys of a HashMap, and a ComboBox whose items come from the values of these keys.
Which means:
{z=[], y=[], x=[12]}
{z=[], y=[], x=[12, 34]}
{z=[], y=[56], x=[12, ...
2
votes
1answer
66 views
Dynamically update JComboBox (NullPointerException)
I'm trying to dynamically update a JComboBox in swing application and getting a null pointer exception.
class Accounts extends JPanel {
JComboBox<String> accountSelect;
...
0
votes
1answer
37 views
Using a value to fire Jcombobox actionlistener instead of getselectedindex?
here is the Jcombobox it has two items name and id
public void ComboItem() {
chooser.removeAllItems();
chooser.addItem("Please Select...");
try {
String sql="select * from ...
0
votes
1answer
38 views
JCombobox Listener how to enable it when item is selected?
I have a JComboBox that displays Name From database Patients_Details
public void ComboItem() {
chooser.removeAllItems();
chooser.addItem("Please Select...");
try {
String sql="select * ...
1
vote
1answer
43 views
ComboBox (setSelectedIndex()) is not working properly
I have 7 items in comboBox and every time when i select one of them and click "next" button it selects first item not next. Do anyone knows why?
if ("Цена (EURO)".equals((String) ...
0
votes
1answer
32 views
Make JComboBox behave like a menu with subdivisions
I want to be able to subdivide the options in a JComboBox (it's a fairly extensive list, maybe 14 elements or so), and render the options menu-style.
For example, I'd want the dropdown menu from the ...
1
vote
5answers
102 views
Java Currency Converter GUI
I'm trying to make a simple java currency converter GUI. So far I have this :(4 parts)
How would I set the values for each item in the jcombbox (ex. each currency) so that I can use them to ...
1
vote
1answer
48 views
Is there a way to add the value chosen from all combobox into 1 textfield?
is there a way for me to add the value of combobox choosen into 1 textfield?
i.e noOfBks.
For example, I have two comboboxes, which is quantitiesCB1 and ebquantitiesCB1.
quantitiesCB1 is for ...
0
votes
3answers
56 views
JComboBox, ActionListener, How do I really use them?
Im currently learning java and stuck onto JComboBox.
I have a feel things that I am trying out and hitting the wall for the pass 4 hours.
I am trying to let a user select 1-10 from a ComboBox.
How do ...
-1
votes
2answers
59 views
Selected item in combobox will notadd to textfield?
I have the following code but i keep getting errors.
void is an invalid type for the variable itemStateChanged
This is the error message but when i take void out i get syntax errors.
Can anybody fix ...
1
vote
1answer
33 views
Customize position of arrow on JComboBox (place centered on bottom)
I'd like to be able to make a JComboBox with the arrow centered, below the text, to look like the pictured buttons from Word.
I understand that the usage of the pictured buttons here differs from ...
0
votes
1answer
49 views
Getting textfile in a combobox
I haven't used comboBox much in java before and I'm having a bit of trouble getting my textfile to appear. I believe I have the files load correctly but it seems like I'm finding difficult to ...
-1
votes
1answer
43 views
Using textfile in a combo box [closed]
Hello I've been having trouble getting my combo box to list items from a textfile. And while I'm at it could I want to ask if my radioButton change dynamically when I change my combobx or will that be ...
1
vote
3answers
64 views
Get SelectedItem from Combobox
Like this i can output the selected value from the ComboBox..
public static String selectedString(ItemSelectable is) {
Object selected[] = is.getSelectedObjects();
return ((selected.length == ...
0
votes
2answers
39 views
fill JComboBox with items from a multidimensional table
I'm trying to fill a JCombobox from items in a multidimensional table.
the items I trying to ad are the names of cities in that table.
this is my code :
String t21[][] = {{"Azores","Alaska","Pacific ...
0
votes
1answer
63 views
The type JComboBox is not generic
I have a problem. I doing on debug a program. When I copy the program and import into my Eclipse, there are some error. One of the error is I cannot set parameter of the JComboBox with < String >. ...
0
votes
1answer
44 views
JComboBox Not Refreshing/Updating Because of ActionListener
So here's my problem: I'm currently using two JComboBoxes. The second JComboBox is suppose to update depending on what is selected in the first JComboBox. In this case, the first JComboBox holds the ...
0
votes
3answers
49 views
Condition for JComboBox
I am using 2 JComboBoxes
String arr1[] = {"text1", "text2", "text3"};
String arr2[] = {"text1", "text2", "text3"};
JComboBox box1 = new JComboBox(arr1);
JComboBox box2 = new JComboBox(arr2);
where ...
0
votes
2answers
35 views
screen ComboBoxModel based on an enum value
I'm trying to populate a combo box using enums based on a player's enum.
For example, upon initializing the game, the player chooses a faction (FactionType). The FactionType enum is used in the ...
0
votes
0answers
31 views
How to handle user JComboBox input with glazedlists AutoCompleteSupport?
According to AutoCompleteSupport (Glazed Lists)
JComboBox ActionEvents
A single ActionEvent is fired from the JComboBox in these situations:
the user hits the enter key
the selected item ...
0
votes
1answer
59 views
How to get data from JCombobox in renderer?
I need to develop the autocomple combobox with popup list. Every line of that list should highlight typed into autocomplete data.
I use glazedlists to make autocomplete. But what troubles me the most ...
-1
votes
2answers
52 views
Editable JCombobox and the key listener [closed]
how to add key event listener in jcombobox so that it accepts the whole String for ex. if i add 'S' it should search for the String that start with 's' in database .if there are no result then it ...
0
votes
1answer
54 views
Why JComboBox needs item -1 while building?
I'm trying to understand why the following code doesn't work:
JComboBox status = new javax.swing.JComboBox();
status.setModel(new DefaultComboBoxModel() {
@Override
...
0
votes
2answers
54 views
How can I put labels on buttons created from a JComboBox?
I am creating an elevator and have made some buttons from a JComboBox however I can't seem to get a label on them. There are up to 8 buttons created and the buttons have to be named from bottom to ...
0
votes
0answers
48 views
can't remove borders of a jcombobox
I'm trying to remove the borders of a non-editable combobox for a while, I did some research and I was able to remove the borders, set up a titledborder and remove the arrow icon, and some other ...
3
votes
3answers
100 views
NullPointerException, killed my program
I'm trying to create my little box that shows the color when selected from the combo box. But I keep getting this error of NullPointerException when I try to run the program. I don't see what is wrong ...
2
votes
1answer
76 views
Swing MVC - refresh the content of JComboBox while already visible
I set the model of my combobox in my controller class
cboCategory.setModel(new ModernDefaultComboBoxModel(model.getProductCategories()));
productCategories is a List of String. ...
0
votes
0answers
55 views
Items Not added to jComboBox from Database
Code below throws NullPointerException but does not throw when used with actionPerformed() method of jComboBox, it shows all items but selects only one i.e., first
Please help me out of it is ...
0
votes
1answer
25 views
Maintain JComboBox Size
I want to make an account screen for a project, but I'm still new to GUI's. This is my first time working with a JComboBox and I'm having a bit of trouble. I want to basically place the JComboBox ...
0
votes
1answer
81 views
Update JTextField with calculation from JComboBox
In my code, I'm trying to post in the JTextField the totalPrice calculation as soon as a someone clicks on an option from either of the comboboxes. I don't want the names i.e "pepperoni" but the ...


