Reputation: 567
i am trying to put a dropdown JComboBox in my application with autocompletion.
I already managed to do the autocompletion part but it only works with the first letters, so if i type "fre" it gives me "Fresas del Pacifico" that is OK
What i need is to be able to type "Paci" and also get "Fresas del Pacifico"
i am using AutoCompleteDecorator.decorate(comboBoxCliente);
Any ideas? or 3rd party libs?
thanks
Upvotes: 0
Views: 2132
Reputation: 11557
you can look into
http://www.java2s.com/Code/Java/Swing-Components/AutocompleteComboBox.htm
or
http://www.algosome.com/articles/java-jcombobox-autocomplete.html
or
Upvotes: 1