vote up 2 vote down star
1

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

How to do it ?

flag

67% accept rate

2 Answers

vote up 5 vote down check
JTable.rowAtPoint(evt.getPoint());
link|flag
vote up 0 vote down

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|flag
Does this still work if it's in column or cell selection mode? – Paul Tomblin Oct 29 '08 at 12:29

Your Answer

Get an OpenID
or

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