TableColumn<CustomObject, Boolean> tableColumnTwo
チェックボックスがオンの場合にのみCustomObject
のフィールド値に基づいてTableColumn<CustomObject, String> tableColumn
を無効にすることを検討しています。私は、誰もがこのJavaFXチェックボックスの状態に基づいてTableColumnを無効にする
@FXML
private TableColumn<CustomObject, Boolean> tableColumnTwo;
@FXML
private TableColumn<CustomObject, String> tableColumn;
tableColumn.setCellFactory(
new Callback<TableColumn<CustomObject, String>, TableCell<CustomObject, String>>() {
@Override
public TableCell<CustomObject, String> call(TableColumn<CustomObject, String> paramTableColumn) {
return new TextFieldTableCell<CustomObject, String>(new DefaultStringConverter()) {
@Override
public void updateItem(String s, boolean empty) {
super.updateItem(s, empty);
TableRow<CustomObject> currentRow = getTableRow();
if(currentRow.getItem() != null && !empty) {
if (currentRow.getItem().getPetrified() == false) { // Need to check if checkbox is checked or not
setDisable(true);
setEditable(false);
this.setStyle("-fx-background-color: red");
} else {
setDisable(false);
setEditable(true);
setStyle("");
}
}
}
};
}
});
https://stackoverflow.com/help/how-to-askまたは言い換えれば、あなたが何をしているのか、あなたの目標に到達できないかを示す実行可能な例を提供してください:) – kleopatra