How do I add a KeyListener to JComboBox with “AutoCompleteSupport” (glazedlists) in Java SE.
I am working on a small program which has a JComboBox that works with AutoCompleteSupport. I want to execute a method if I press Enter key in the JComboBox. How can I do this with AutoCompleteSupport?
How do I add a KeyListener to JComboBox with AutoCompleteSupport (glazedlists) in Java SE.
Share
Check out AutoCompleteSupport (Glazed Lists) which mentions:
Also check out these excerpts from the source:
And:
Looks like you want an
ActionListenerinstead of aKeyListener.