In my Java Desktop Application I have a TableView in which I want to have a column with CheckBoxes.
I did find where this has been done http://www.jonathangiles.net/
Small and simple.
row.setCellValueFactory(c -> new SimpleBooleanProperty(c.getValue().getIsDefault())); row.setCellFactory(tc -> new CheckBoxTableCell<>());