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
Override the table model
isCellEditable(int rowIndex, int columnIndex) takes two arguments, just return true for the column you want?
isCellEditable(int rowIndex, int columnIndex)
public boolean isCellEditable(int rowIndex, int columnIndex){ return columnIndex == 0; //Or whatever column index you want to be editable }