Hi...
By the way, we usually active a cell using double click over the cell to be
edit.
This is my code for instance my own cell editor:
CELL_EDIT = new myTableEditor();
TABLE.setDefaultEditor(Object.class, CELL_EDIT);.
It is working fine, when I double click over a cell, it start to editing
mode.
However I would like to active the cell editing without double click action.
Like to press a button in the program or a code that say:
// I WANT TO SET VALUES FROM A TEXTFIELD OUT OF THE TABLE BUT INSIDE OF THE
PANEL.
ROW = 2; // whatever that I set
COL = 0; // whatever that I set
CELL_EDIT = new myTableEditor();
TABLE.setDefaultEditor(Object.class, CELL_EDIT, ROW, COL);.
Somebody could help me?
Thanks...