A JComboBox is a commonly used in the GUI. It is a combination of a drop-down list and a single-line JTextField, allowing the user to either type a value directly into the control or choose from the list of existing options.

learn more… | top users | synonyms

-1
votes
1answer
29 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
35 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
13 views

Populating JComboBox with XML attribute - DOM4J

I was trying to use DOM4J API to populate a JComboBox with a XML file attributes, but I don't know how it's done. I've been reading the API documentation but I still can't do it. Can you help me? ...
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
32 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
28 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
37 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
36 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
32 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
63 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
37 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
30 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
47 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
1answer
46 views

JComboBox ActionListener not working after removeAllItems() was used

I have two JComboBoxes; one removes all items in the other if it's already populated and then adds a new set of items, and the second fires an event that gets information from a database using the ...
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
58 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
48 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
42 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
43 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
33 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 ...
0
votes
2answers
66 views

How to filter out info by using useDelimiter

So, what am I trying to do is I get the info from a text file, For example, 134567H;Gabriel;24/12/1994;67;78;89 Then I display only Admin number which is the first one but not the whole line ...
-1
votes
2answers
51 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 ...
-1
votes
2answers
32 views

Is this the correct way to access the objects

I'm trying to get back a list of objects from a JCombo box It was suggested private JComboBox<Object> levelComboBox; levelComboBox = new JComboBox<Object>(logLevel); ...
0
votes
1answer
52 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 ...
1
vote
1answer
37 views

Can't Fetch record from database in JTexField

Hello here i am trying to fetch record from database while i am using one combobox based on that selection i want to get related record from the same table in the textfields.. but unfortunately i got ...
0
votes
0answers
36 views

JDatechooser triggers Jcombobox's Action

I have JDateChooser component and few Jcomboboxes in my swing application. Im having following issue. When I select some random element from Jcombo and then select date from Jdatechooser, changes the ...
2
votes
3answers
69 views

How to create a combo box actionListener? [closed]

How do I create a combo box action listener? I have the following so far: myCombo = new JComboBox(); myCombo.addActionListener(); I am not sure how to proceed, it seems that it is different from ...

1 2 3 4 5 17