When the application is started, none of the rows is selected. But I would like to show that the first row is already selected.
How to do this? Do I need to set the
You can do it calling setRowSelectionInterval :
table.setRowSelectionInterval(0, 0);
to select the first row.