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
One option would be to replace the KeySelectionManager interface with your own. You want to replace the JComboBox.KeySelectionManager as it is responsible for taking the inputted char and returns the row number (as an int) which should be selected.