I\'m trying to create a JTable that simply displays data and does not allow any edits or selections. I set all cells to be uneditable by running:
TableModel
In addition to returning false from isCellEditable(), add these invocations.
false
isCellEditable()
table.setFocusable(false); table.setRowSelectionAllowed(false);