JavaFX provides some predefined cell factories for instance for CheckBoxTableCell. It should be possible to assign them to TableColumn using cellFactory property, for instance, following should be possible:
new TableColumn[Item, java.lang.Boolean] {
...
cellFactory = CheckBoxTableCell.forTableColumn(this)
...
}
JavaFX provides some predefined cell factories for instance for
CheckBoxTableCell. It should be possible to assign them toTableColumnusingcellFactoryproperty, for instance, following should be possible: