How do you create a multiple selection mode JComboBox
Created May 7, 2012
Scott Stanchfield You can't.
The UI paradigm behind a combo box is strictly single selection.
If you want multiple selection, you should use a JList.
Created May 7, 2012
The UI paradigm behind a combo box is strictly single selection.
If you want multiple selection, you should use a JList.