Brad
Brad

Reputation: 4547

How to prevent JComboBox from closing?

After selecting an item from a JComboBox, i want to keep the JComboBox still opened to allow the user to choose another item from it. Is that possible ?

I hope you can provide me an example.

Upvotes: 4

Views: 890

Answers (2)

MByD
MByD

Reputation: 137282

As a different approach, maybe you can display in the JComboBox only the "allowed to choose" items in first place?

Upvotes: 1

krock
krock

Reputation: 29619

Perhaps what you are after is a JList instead.

Upvotes: 3

Related Questions