I have a quick question about getting information out of a table cell. I am using a mouse listener to check for which row was selected then having the information moved into respective text fields. I am using a mouse listener because it's the only type of listener I can get to work.
I understand that table.getValueAt(int,int) returns information however when I try this it's only returning the position of the row(such as 1,2,3,4,etc). How can I get it to return the actual value that is in the cell and not the location of it?
Thanks!
