Tagged Questions

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

9
votes
1answer
356 views

Why isn't getSelectedItem() on JComboBox generic?

JCombobox in Java 7 has been updated to use generics - I always thought it was a bit of an oversight that it didn't already so I was pleased to see this change. However, when attempting to use ...
6
votes
1answer
111 views

Java Swing: How to make the JComboxBox drop down list taller?

How to make the "dropdown" (or "popup", I don't know how it's called) of a JComboBox taller on the screen? By default, when I open my JComboBox I see, say, 7 out of 29 items, then I need to scroll. ...
6
votes
1answer
2k views

How can I know when the text of an editable JComboBox has been changed?

I have an editable JComboBox where I want to take some action whenever the text is changed, either by typing or selection. In this case, the text is a pattern and I want to verify that the pattern is ...
6
votes
9answers
12k views

Putting JComboBox into JTable

I want to put individual JComboBoxes into each cells of a JTable. ie. The JComboBox content is not identical for each cell. I basically would like to be able to just call the following code to add a ...
5
votes
3answers
63 views

How to indicate that a JComboBox is loading values?

I have a JComboBox whose values are retrieved across the net. I'm looking for a way to indicate that fact to the user, when the user wants to see the list, expands the drop down, and only then the ...
5
votes
3answers
365 views

Better readability/contrast in a disabled JComboBox

I have a JComboBox that needs to be disabled at some point, but I am feeling that the disabled status makes it quite harder to read because the low contrast it has. It would be nice if only the ...
5
votes
1answer
830 views

How can I change the arrow style in a JComboBox

Let's say I want to use a custom image for the arrow in JComboBox, how can I do this? I understand it's possible using the synth xml files, or maybe even UIManager.put(...), but I don't know how. ...
5
votes
1answer
3k views

focus issue using a JComboBox as a cell editor in a JTable

I'm having issues with the following code, where I use a JComboBox to change a String value in a table cell. The JComboBox works fine, but if I click in the box and then click away without selecting ...
4
votes
1answer
109 views

JTable, JComboBox using custom Objects

Hi if You put JComboBox in JTable and String[] array to JComboBox everything works fine. Buf if You put your own data type to JComboBox selecting values in same column becomes complicated. Here is ...
4
votes
4answers
70 views

Why JComboBox ignore PrototypeDisplayValue

In connections with these two post @iMohammad, Increasing/Decreasing Font Size inside textArea using JButton and Changing Font Style when Clicking on a JButton Java ..., I'm facing with really funny ...
4
votes
1answer
86 views

Hide JComBox Box Arrow

Is it possible to hide the arrow displayed in the JComboBox I tried setting: combo.getComponent(0).setSize(new Dimension(1,1)); But it doesnt seem to work
4
votes
2answers
402 views

Dynamically adding items to a JComboBox

Vector comboBoxItems = new Vector(); DefaultComboBoxModel model; // ComboBox Items have gotten from Data Base initially. model = new DefaultComboBoxModel(ComboBoxItems); JComboBox box = new ...
4
votes
1answer
224 views

JCombo AutoComplete - Pattern or Reverse Lookup

I'm using the auto-complete decorator in the swingx library: AutoCompleteDecorator.decorate( myComboBox ); Which is pretty sweet. However, it only searches forward from the start of the typed text. ...
4
votes
2answers
103 views

Persistent state for Java UI elements between runs

I have a Java program which has a number options it allows the user to change, mostly via JComboBox. The only problem is that every time the user closes the program the settings reset, because they ...
4
votes
2answers
496 views

How to make JComboBox selected item not changed when scrolling through its popuplist using keyboard

I have a JComboBox component in the panel and ItemListener attached to it. But it gets fired after every up/down keypress (when scrolling though opened popup list). I want to change the selected value ...
4
votes
2answers
218 views

Nulls In JComboBox Stopping Arrow Key Use

The code below has a bug. Upon loading the JFrame, press tab to focus on the JComboBox, and try pressing the down key. It doesn't do anything. Inserting Null at position 0 causes this. However, I ...
4
votes
3answers
450 views

Color of the dropdown control and border in an uneditable JComboBox

The background color of the selected item in an uneditable JComboBox is a sort of blue: I know that you can change it to a different color, such as white, for example with the following code: ...
4
votes
3answers
2k views

JCombobox editable enabled

What is the difference between the setEditable() and the setEnabled() in a jCombobox? Can a combobox be editable but not enabled and other way around? In which situation would you use which method? ...
4
votes
2answers
321 views

Is there a way to make a JComboBox act like an HTML Select?

What I am trying to do mimic an HTML Select tag. I want to display text as an option but when selected, I would use its value. For example, I would have a list of country names. However, when a user ...
3
votes
2answers
40 views

Dual color JComboBox text

In Swing is there any way to have two colors for single option? I mean, if I have a option, say Show only cities [Alt+C] in JComboBox, I want Show only cities text in one color and [Alt+C](hotkey) in ...
3
votes
3answers
108 views

The Stubborn JComboBox

I have a JComboBox shown in the code below. When the program starts its actionPerformed event fires up immediately causing some null pointer exceptions so I want to start with none of the elements ...
3
votes
5answers
293 views

Set Size of JComboBox PopupMenu

i am programming a custom component which extends a JComboBox. My problem is, the PopupMenu won't actualise its size if i am adding or removing an item. So there are e.g. 2 items in the list, but if ...
3
votes
2answers
122 views

Swing BoxLayout problem with JComboBox without using setXXXSize

here's an SSCCE: import java.awt.Color; import java.awt.Dimension; import javax.swing.Box; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JComboBox; import ...
3
votes
1answer
194 views

java swing combo box selection and link to other combo boxes

Here is the scenario: I have a table in database with 3 columns (id, name, age). I've created 3 swing comboboxes and a button that sends a "select statement" to the database and fills the comboboxes ...
3
votes
3answers
94 views

Help in automatically changing value upon ItemChange in JComboBox

I have a program in which I am using 3 things, a checkbox, a combobox and a textfield. The logic works like this if checkbox is enable then combobox and textfield are enable unless not. Then set some ...
3
votes
1answer
157 views

Render JCombobox to the right problem

I want to let JComboBox be aligned from right to left and to render text from right to left I have set component orientation and also change the render as follows: import java.awt.Component; import ...
3
votes
1answer
136 views

JCombobox dropdown visiblity issue?

I have a root panel (2 rows, 1 column) which has panel P and a label L in it. P has a JComboBox B in it. Whenever I click on B, the resulting dropdown shows-up behind L. How do I fix this? I played ...
3
votes
1answer
167 views

JComboBox containing Icon is too small on Mac

I am currently developing a Swing application which shall execute on every platform. The general application is not the problem, it works fine on Windows, Linux and Mac. But I have this JComboBox ...
3
votes
2answers
237 views

How to change that array of items in JComboBox at runtime

I add a JComboBox to a JPanel (in the JComboBox constructor I load array of strings). How can I change that array at runtime, to load new items?
3
votes
3answers
151 views

Change value in column on select JComboBox

I have table with two columns and lot of rows, each column contain JComboBox. I wrap JComboBox into DefaultCellEditor and added to model. How to implement that when I choose in JComboBox ( example ...
3
votes
2answers
602 views

JComboBox setText Method

javax.swing.JComboBox class does not support the setText method. Is there a way on how can I set the text of an editable combo box? Like something that I can call jcombobox1.setText("Text has ...
3
votes
5answers
427 views

Local variable needs to be declared final

I'm receiving the error "local variable box is accessed from within inner class; needs to be declared final". That seems alright, but I don't really think it's the best solution, so I was hoping maybe ...
3
votes
3answers
557 views

Scrolling on a JComboBox popup hide it

My client is complaining that JComboBox popups often close when the scroll is being used over a JComboBox popup with no vertical scrollbar. (He seems to accidently use scrolling over it because he is ...
3
votes
1answer
237 views

JComboBox is throwing a NullPointerException when told to addItemListener()

I am getting a NullPointerException on line 27 (listOfWindTurbines.addItemListener(new dropDownListener());) when I try to run my program. Please Help! import java.awt.event.*; import java.awt.*; ...
3
votes
2answers
960 views

JPanel set to invisible, combobox choice other than default sets it to visible, but components are missing

I am building an ohms law app. Please keep in mind that is my first program ever (without tutorials) so please be kind =) Here's how it looks when you run it: The combo box has options to calculate ...
3
votes
2answers
563 views

Swing: detect Enter in JComboBox?

I've tried using getInputMap() + getActionMap() on a JComboBox and it seems to have no effect. I've tried addActionListener() / addItemListener() on a JComboBox and I can't seem to distinguish a ...
3
votes
2answers
2k views

JCombobox string item (visible) and integer key (inherent)

I have a database schema = which will be shown in a JCombobox as a JTable column to select a name. But I want the ID field to insert (as a foreign key) in another table. Usually, selecting an Item ...
3
votes
3answers
866 views

Background color of the selected item in an uneditable JComboBox

The background color of the selected item in an uneditable JComboBox is a sort of blue: Is there any way to make this a different color, such as white, for example?
3
votes
1answer
136 views

How do I make a listener that fires when the USER selects an item in a JComboBox

I'm looking for a listener that fires ONLY when the user, the one who's using the program, selects an item in the JComboBox. I don't want to use ActionListener or ItemListener because those also fire ...
3
votes
3answers
839 views

displaying images in JComboBox

i need to display a image in JComboBox
3
votes
2answers
672 views

custom JComboBox top label

Hopefully an easy question. From the example on http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/uiswing/components/combobox.html on "Providing a Custom Renderer" section, I can make a ...
3
votes
2answers
3k views

How to configure JComboBox not to select FIRST element when created? (Java)

Problem: Update: From the Java SE 6 API: public JComboBox() Creates a JComboBox with a default data model. The default data model is an empty list of objects. Use addItem to add items. By ...
3
votes
2answers
781 views

How can I make some items in a JComboBox unselectable?

How can I make some of my JComboBox Items unselectable? I tried this: @Override public Component getListCellRendererComponent(JList list, Object value, int index. boolean isSelected, boolean ...
3
votes
3answers
996 views

How to map the JComboBox item to its corresponding ID?

I have a table in a database that contains two fields id name I have populated a JComboBox "combo1" with all the names stored in the DB. Now I want that whenever a user selects an item of the ...
2
votes
1answer
31 views

Detecting JComboBox editing

I have a JComboBox, once every second I want to retreive a set of strings from a database and set those strings to the contents of the JComboBox, and one of them as the currently selected value. But ...
2
votes
3answers
44 views

action performed when an option from a JComboBox is chosen

Hi I have a JComboBox with 3 options, and I'm trying to figure out which actionlistener to apply in order for something to happen when an option is selected. At the moment my code is: comboBoxMode = ...
2
votes
3answers
107 views

How can I add database id as combobox Index in java?

I want to add combobox Index from database id. public static void selectCompany(javax.swing.JComboBox cmbCategory ){ cmbCategory.removeAllItems(); String sql="SELECT * FROM company_details"; ...
2
votes
3answers
170 views

JTable, JComboBox dynamic values

I have JTable. In it I have few columns. In 3 of them I have JComboBox (each column's each cell has unique JComboBox - i.e. whole column 1 - "apple", "bannana"; column 2 - "red", "blue"; column 3 - ...
2
votes
2answers
57 views

Adapt JComboxBox maximumRowCount to JFrame or Screen Size

Everything is in the title. In my application, depending on a selection made by the user I fill up a combobox with a list which can sometime be small (1 element) sometimes be large (150 elements). ...
2
votes
1answer
97 views

Checking whether a JComboBox has the default value or not

EDIT: Since the term "default value" is confusing, I changed it to "initial value." This is sort of an interesting question. I searched on the site for an answer, but didn't find one. I'm writing a ...

1 2 3 4 5 7