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 fine.
What might I be doing wrong?
Thanks.
|
|
|
|
|
|
|
Show us a small section of your code.
Looks like it's a problem with JComboBox being a composite component. I'd suggest avoiding such nasty UI solutions. |
|||
|
|
|
|
I found a workaround. I thought I'd let the next person with this problem know about. Basically. Instead of setting the inputVerifier on the ComboBox you set it to it's "Editor Component".
|
||
|
|
|
|
I wouldn't use the term workaround. Based on all the swing code I've seen from a bunch of different sources that looks to be the canonical solution. |
||
|
|