I have a JTable
with 10 rows. If I have multiple selections on the JTable
, how do I get the cell that is currently focused?
I have tried to used JTable
's getEditingColumn()
and getEditingRow()
, 开发者_JAVA百科but they always return -1 during multiple selection.
The commands;
table.getSelectionModel().getLeadSelectionIndex();
table.getColumnModel().getSelectionModel().getLeadSelectionIndex();
give the selected row and column respectively.
精彩评论