We need an autocomplete component for the swing, the problem with jdesktop / SwingX is that we have to use the combo box and after each key press it just scrolls to the closest match, but the combo still contains 25,000 items, It doesn't show 4 or 5, which are the closest match, because they can be in different places on the list. We do not want to display a list with 25,000 either ...
Is there something similar to JSF autocomplete or google homepage? We need a component that gives our interface something like
public List getOptions (String typedSoFar) {// here we return 5 matching our criteria and just offers // those five to the user}
Pablo source
share