I am writing an applet which contains a JTable. The JTable displays Z-Scores for a Statistics application. Because it can be hard to determine the row and column of the highlighted cell, I want to highlight each when the user selects a given cell. I know I can use JTable.setColumnSelectionAllowed(true) to accomplish column highlighting. However if I do the same for the rows, using JTable.setRowSelectionAllowed(true), then I get no highlighting and only the single selected cell ends up with a border. Is there a way to use both?