Apr 21, 2006 #1 tvrtko Programmer Nov 26, 2003 53 HR How can I programmatically select row of jTable? Thanks in advance
Apr 21, 2006 1 #2 timw Programmer May 3, 2000 1,264 GB Code: ListSelectionModel model = yourTable.getSelectionModel(); model.setSelectionInterval(startRow, endRow); where startRow and endRow are the indexes of the required selection. Tim Upvote 0 Downvote
Code: ListSelectionModel model = yourTable.getSelectionModel(); model.setSelectionInterval(startRow, endRow); where startRow and endRow are the indexes of the required selection. Tim