开发者

How to get the focused cell in JTable during multiple selection

开发者 https://www.devze.com 2023-02-05 01:07 出处:网络
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 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.

0

精彩评论

暂无评论...
验证码 换一张
取 消