show/hide this revision's text 3 added 1 characters in body

I think that I solved it.
To tell you the truth, I don't know what solved the problem, since I'm using a custom editor, a custom renderer and stuff...

When a cell is highlighted and I press "abc" abc", the 3 letters go on screen (cell, in this case).

grid.addKeyListener(new KeyAdapter() {
    public void keyTyped(KeyEvent ke) {
        int l = grid.getSelectedRow();
        int c = grid.getSelectedColumn();
        grid.editCellAt(l, c);
    }
});

Well... I tried... =)
(I don't know if it's the same because my JTable uses JTextField and JComboBox as editors).

show/hide this revision's text 2 cleanup

I think that I solve solved it.
To tell you the truth, I don't know what solved the problem, since I'm using a custom editor, a custom renderer and stuff...

When a cell is Highlighted highlighted and I press : "abc" the 3 letters go on screen (cell, in the this case).

grid.addKeyListener(new KeyAdapter() {
    public void keyTyped(KeyEvent ke) {
        int l = grid.getSelectedRow();
        int c = grid.getSelectedColumn();
        grid.editCellAt(l, c);
    }
});

Well... I tried... =)
(I don't know if it's the same 'cause mine because my JTable use uses JTextField and JComboBox as editors).

show/hide this revision's text 1

I think that I solve it. To tell you the truth, I don't know what solved the problem, since I'm using a custom editor, a custom renderer and stuff...

When a cell is Highlighted and I press : "abc" the 3 letters go on screen (cell, in the case).

        grid.addKeyListener(new KeyAdapter() {

        public void keyTyped(KeyEvent ke) {

            int l = grid.getSelectedRow();
            int c = grid.getSelectedColumn();
            grid.editCellAt(l, c);


        }
    });

Well... I tried... =) (I don't if it's the same 'cause mine JTable use JTextField and JComboBox as editors).