I use the latest version (8.0.5) of ControlsFX, and I think I need a little help with TextField autocomplete, because I'm very new to this.
I got this code here
AutoCompletionTextFieldBinding.createBinding(
MyTxtField,
SuggestionProvider.create("Hey", "Hello", "Hello World", "Apple", "Cool", "Costa", "Cola", "Coca Cola")
);
But it shows an error: method SuggestionProvider is not applicable.
Any tips on implementing this autocomplete to have an array similar to a dictionary with IDand VALUE?
source
share