Smig
Smig

Reputation: 693

Is there a way to change the JComboBox's items focus?

I can change the item's focus by pressing the arrow keys on the keyboard or by moving the mouse over it. Is there a programmatic way to move the focus around the items?

Upvotes: 0

Views: 1459

Answers (1)

Reimeus
Reimeus

Reputation: 159804

You can simply set the selected item. Optionally, you can show the dropdown list:

comboBox.requestFocus();
comboBox.showPopup();
comboBox.setSelectedIndex(selectedIndex);

Upvotes: 2

Related Questions