up vote 3 down vote favorite
1
share [g+] share [fb]

I want to find out at whih row of JTable the user clicked.

How to do it ?

link|improve this question

58% accept rate
feedback

2 Answers

up vote 7 down vote accepted
JTable.rowAtPoint(evt.getPoint());
link|improve this answer
feedback

If you only ever care about listening to selections on the JTable:

jTable.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
    public void valueChanged(ListSelectionEvent e) {
        int sel = jTable.getSelectedRow();
    }
});
link|improve this answer
Does this still work if it's in column or cell selection mode? – Paul Tomblin Oct 29 '08 at 12:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.