Javadoc stats
"As with ListView, it is possible to modify the SelectionModel that is used, although this is likely to be rarely changed. The default SelectionModel used in ComboBox is a SingleSelectionModel, but this can be switched out by developers to instead allow for multiple selection to occur, or to alter the behavior of the various methods provided in these APIs. "
Yet when I try to set the selection model like I would for a listview using the following
comboBox.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
I am informed that setSelectionModel is not available.
How do you enable multiple selection in a ComboBox??