How to prevent JComboBox from closing?

After selecting an item from JComboBox, I want the JComboBox to still open to allow the user to select another item from it. Is it possible?

Hope you can give me an example.

+3
source share
2 answers

Perhaps you are instead JList.

+3
source

As a different approach, perhaps you can JComboBoxonly display “allowed to choose” items in the first place?

0
source

All Articles