If someone edit the cell content of a JTable and press enter, the content is modified and the table selection moves to the next row.

Is that possible to forbid the JTable to go to the next row after a cell edition?

The reason is that my program synchronize some other widgets on cell selection using a ListSelectionListener, and I do not want to have the next row selected after editing the current cell.

Thanks in advance,

Martin

link|improve this question

60% accept rate
feedback

2 Answers

up vote 4 down vote accepted

The default binding for Enter is the Action named selectNextRowCell. To override the entry in the WHEN_ANCESTOR_OF_FOCUSED_COMPONENT input map, you'll need to supply a doNothing() Action, as suggested in How to Use Key Bindings: How to Make and Remove Key Bindings.

link|improve this answer
Great suggestion! The complete work to do is to add a call to table.getCellEditor().stopCellEditing(); in the actionPerformed(...) method. Without this call, the cell remains in edition mode when the user press enter. – Martin Nov 3 '11 at 15:16
Good point; see also Using an Editor to Validate User-Entered Text. – trashgod Nov 3 '11 at 19:02
feedback

I'm not sure how exactly to do this, but I would look into ActionMap. You should be able to either modify or replace the Action that is mapped to the 'Enter' key.

Good luck!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.