I have editable JCombobox and I added keylistener for combobox editor component. When user press \'Enter key\' and if there is no text on the editable combobox I need to dis
Note that I can't use Action listener for this.
this doesn't make me any sence, then to use ItemListener
Any idea how to solve this?
never to use KeyListener for Swing JComponents, use (Note that I can't use Action listener for this.) KeyBindings instead,
notice ENTER key is implemented for JComboBox in API by default, have to override this action from ENTER key pressed