Cursor keys don't work when combo box is used as CellEditor Reported by Pragalathan M at 01.12.04

in progress

Switching look&feel breaks automatic completion Reported by Alan Feng at 19.10.04
A reference to the editor is obtained only once inside the constructor. Switching the look&feel may replace the current editor.
fixed (only in AutoCompletion.java)

Unawareness of changes to the combo box model Reported by Bodo Hüsemann at 06.10.04
A reference to the combo box model is obtained only once inside the constructor. Later changes will be ignored.
fixed (only in AutoCompletion.java)

Possible indefinite loop when calling setSelectedItem() Reported by Alex Sherer at 05.10.04
The call to setSelectedItem() from insertString() in turn calls insertString() - this sets up a loop. On Sun's JDKs this loop is broken by the DefaultComboBoxModel. On some JDKs (bug is known to occur on Apple and IBM JDKs) or when using a custom combo box model the bug will occur.
fixed

Popup should not be shown when text is set via editor.setText Reported by Alex Sherer at 05.10.04
The mechanism that shows the popup can't distinguish between user entered text and text set via setText().
fixed

Delete key should not be surpressed in non-strict version Reported by Alex Sherer at 05.10.04
Delete key event is consumed inside the key listener
fixed

NPE when null values are inside the popup list Reported by Francis Ménard at 23.09.04
The code is silently assuming that there are no items that are null.
in progress

Delete key should be surpressed for strict matching Reported by Klaus Rheinwald at 22.09.04
Delete key is not handled at all.
fixed

When using non-strict matching first entered letter gets highlighted Reported by Francis M�nard at 21.09.04
The mechanism that highlights the whole text when entering an item via cursor keys and enter is not ignoring non matching items.
fixed

Text is not highlighted when passing focus to the combo box via mouse. Reported by Klaus Rheinwald at 17.09.04
The text was highlighted on focus loss. Entering the combo box via mouse will set the cursor and disable the selection.
fixed

Text is not highlighted when ComboBox is disabled when enabling automatic completion or modifying items Reported by Klaus Rheinwald at 16.09.04
Cursor handling in javax.swing.text.DefaultCaret will ignore selections on disabled components.
fixed

Handling enter key does not work on older JDKs Reported by Thomas Bierhance at 08.09.2004
The action listener is receiving events whenever an item gets selected. The action command is only different for manual ("comboBoxEdited") and programmatic ("comboBoxChanged") on newer JDKs. On older JDKs there is no difference.
fixed

Selection via mouse does not work. Reported by Thomas Bang at 03.09.2004
This is a side-effect of applying the fix for bug 5100422 to JDKs prior to 1.5.
fixed

Pasting into the editor does not work Reported by Craig W at 02.09.2004
Selection would only move one character forward, even if more than one character was pasted.
fixed

Integration into JTable is not working Reported by Shane Gilmartin at 20.08.2004
This is due to the fact that the DefaultCellEditor will apply all procedures to stop editing when an item is selected. These procedures include hiding the combo box.
not a bug

Popuplist hides the editor on Mac OS X Reported by Curtis Stanford at 20.08.2004
This is caused by the aqua look&feel.
can't fix

Selection remains partial when combo box looses focus Reported by Franck de Bruijn at 19.08.2004
Focusloss is not handled at all.
fixed

Selection remains partial when hitting enter Reported by Franck de Bruijn at 19.08.2004
Enter is not handled at all.
fixed

Hitting Backspace can produce incorrect entries Reported by Franck de Bruijn at 19.08.2004
Backspace is not handled at all.
fixed