-
Notifications
You must be signed in to change notification settings - Fork 5
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));
(c) 2016 Software Rosenheim - Jonato IT Solutions | Follow on Twitter | Follow on Facebook