I am trying to create table using Javafx, i need for some columns cells to be selectable but not editable,
if i used : textColumn.setEditable(true);
but it will make it editable
if i used : textColumn.setEditable(false); it will be neither selectable nor editabe
how can i make column selectable but not editable ?
Here it is my code sample
TableColumn<Tuple, String> textColumn= new TableColumn<>();
textColumn.setText(column.getName());
textColumn.setMinWidth(column.getWidth());
textColumn.setEditable(true);