I was wondering how to make one column of a JTable editable, the other columns have to be non editable.
I have overwritten isCellEditable() but this changes every ce
you can set if is isEditable for TableColumn or TableColumn and TableCell too
isEditable
TableColumn
TableColumn and TableCell
@Override public boolean isCellEditable(int row, int col) { switch (col) { case 0: case 1: return true; default: return false; } }