In a JTable,when entering values in a row,the Enter key has to be pressed so that JTable recognizes the values in the row.Is there any other method to do the above one without using the Enter key?
Created May 4, 2012
Sandip Chitale Sure..you can implement the custom Celleditor. You may end the editing using any criterion and commit the changes by calling stopCellEditing() method.
See http://java.sun.com/products/jdk/1.2/docs/api/javax/swing/CellEditor.html#stopCellEditing()