InputVerifier « JComboBox « Java Swing Q&A





1. How do I get InputVerifier to work with an editable JComboBox    stackoverflow.com

I've got an JComboBox with a custom inputVerifyer set to limit MaxLength when it's set to editable. The verify method never seems to get called. The same verifyer gets invoked on a JTextField ...

2. How to trigger Java Swing InputVerifier on enter in JComboBox (actionPerformed)?    stackoverflow.com

I have a Swing JComboBox with an InputVerifier set correctly. I am using the combo box to set an integer. If I type "cat" in the field and hit tab, my InputVerifier triggers ...