Focus to JTable perticular Cell
Hi all,
I have a problem like:
When first opens window , I load the data into table. I set the focus to first row of the table in the initialization method after loding the data.
But it doesn't focus to table.
//set the selection
table.setRowSelectionAllowed(false);
this.setFocus(table);
I tried with table.requestFocus() also
it doesn't work ...
can anyany know how to set the focus to perticular Cell in JTable.
I have 3 columns one is editable, the editable cell should be focused.
thanks

