Help, how to select the row by "Right-Click" mouse action in JTable?
You know, JTable can select the row by normal click action.
But, JTable can't reponse to select the row by right-click.
And it seems that JTable don't reponse to Right-Clicked:
tt = (JTable)e.getSource();
int row = tt.getSelectedRow();
the row will be old selection row.
How to resolve this?
Thanks

