I have added a KeyListener to JTable; but when I double click on a table cell, the KeyListener stops working.

public class MyKeyListener extends KeyAdapter {

    @Override
    public void keyTyped(KeyEvent ke) {
        char i = ke.getKeyChar();
        int ib = ((int) i);
        if ((ib == 8)) {
            if (jt1.isEditing()) {
                jt1.getCellEditor().cancelCellEditing();
            }
        } else {
            // my code to do
        }
    }
}
link|improve this question
Please edit your question to indicate what you are trying to accomplish. – trashgod Feb 3 at 22:01
feedback

1 Answer

Don't use a KeyListener; use a Key Binding. More examples are cited here.

Alternatively, implement a custom table cell editor, as shown in the tutorial.

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.