listItemsCombo.getEditor().getEditorComponent().addKeyListener(new keyPressListener()); //Works correct
This works fine. But , On adding keyListener to the jcomboBox , keyPress is not getting recoganized while pressing "Enter". What is the exact difference between adding a keyListener to the jComboxBox and adding a listener to its editor?When to add Listeners to editor?
listItemsCombo.addKeyListener(new KeyPressListener())//When should we use this?