I'd like to navigate on JTable using only a keyboard, and select values from JComboBox cells also only with a keyboard.
I'm using Oracle Java JTable tutorial, the code is here: https://docs.oracle.com/javase/tutorial/uiswing/examples/components/TableRenderDemoProject/src/components/TableRenderDemo.java
My question is how to select items from combo box when navigating only with the keyboard, for example:
How to achieve this functionality?
After more googling I found what I think I needed, here is a link to thread and example from oracle.com oracle.com
Basically a custom ComboBoxEditor which extends DefaultCellEditor solves the issues. Looks like the default one has several bugs.