Is there any good ready made Java Swing component that can be used to implement auto complete textbox?
I hated the idea of a third-party solution, so I was always looking a way far from it. I've settle with the JTextField and a hidden JComboBox solution when I was looking with the same idea. Lately, I found something new, and seems like nobody's looking at it as alternative solution. Doing like, textfield and a clean JPopUpMenu. . .
https://www.geeksforgeeks.org/java-swing-jpopupmenu/
Maybe it could help, for others at least. . .