2
votes
How to do a check before allowing editing of a given row in a JTable
Before editing/setting value the table model is asked via TableModel.isCellEditable(row,col) whether this cell is editable. Here you can implement your lock. and after TableModel.setValue(row,col,v …
0
votes
JTable updates not appearing
This is weird problem. You said that DataTableModel implements TableModel. So. If you does not use abstract class the problem should be in the way how you are handling the …
0
votes
Make header text bold when its column is selected in JTable
Set custom renderer into table header. If current column is selected column set font to bold.
JTable table = new JTable()
table.getTableHeader().setDefaultRenderer(new MyRenderer()) …
