I try to make JCombo able to listen to KeyAction event, seem likeit's not so simple as for JTextField although it should work as thelater.Anyone here can advice why no KeyAction is fired although I typethings on the editable combo box
this problem is reported by several programmerjust create a textbox set it property hiddenstore the value of jcombobox in textbox and thenfire the events on jcombobox
I think can try this alsoJComboBox combo = new JComboBox();combo.setEditable(true);JTextField textField2 = (JTextField)combo.getEditor().getEditorComponent();textField2.addKeyListener(new KeyActionHandler());