TreeTableColumn<XxxInstance, String>mColumn;
// マ Mapping
mColumn.setCellValueFactory(new TreeItemPropertyValueFactory<("xxx"));
// Ch Displayed on ChoiceBox
mColumn.setCellFactory (ChoiceBoxTableCell.forTableColumn(xxx));
I would like to change the ChoiceBox selection item for each CELL in で, is it possible?
Do you have only setCellFactory settings for ChoiceBox?
I tried to implement Callback, but I couldn't find the configuration method on the CELL side either
I solved myself.The Callback implementation enabled ChoiceBox to be set for each CELL in setGraphic().
© 2024 OneMinuteCode. All rights reserved.