Skip to content

ComboBoxes

Jonato edited this page Feb 27, 2016 · 1 revision

AutoCompleteComboBox gives you a suggestion based on your typed value

FilterComboBox jumps to the typed key

String[] data =  {"Hallo" , " Welt", "Anfangsbuchstaben", "eines", "Wort", "tippen"};

AutoCompleteComboBox<String> autoCompleteComboBox = new AutoCompleteComboBox<>(FXCollections.observableArrayList(data));

FilterComboBox<String> filterComboBox = new FilterComboBox<>(FXCollections.observableArrayList(data));
Clone this wiki locally