此问题与this有关。现在我想为字段值等于某个值的行着色。
@FXML
private TableView<FaDeal> tv_mm_view;
@FXML
private TableColumn<FaDeal, String> tc_inst;
tc_inst.setCellValueFactory(cellData -> new SimpleStringProperty(""+cellData.getValue().getInstrumentId()));
tc_inst.setCellFactory(column -> new TableCell<FaDeal, String>() {
@Override
protected void updateItem(String item, boolean empty) {
super.updateItem(item, empty);
if (item == null || empty) {
setText(null);
} else {
setText(item);
// Style row where balance < 0 with a different color.
TableRow currentRow = getTableRow();
if (item.equals("1070")) {
currentRow.setStyle("-fx-background-color: tomato;");
} else currentRow.setStyle("");
}
}
});
问题是我不想在我的表格中显示tc_inst
。因此,我将visible
中的SceneBuilder
复选框设置为false。在这种情况下,着色部分根本不起作用。如何隐藏tc_inst
以便着色有效?
答案 0 :(得分:15)
如果要更改整行的颜色,请使用行工厂而不是单元工厂:
tv_mm_view.setRowFactory(tv -> new TableRow<FaDeal>() {
@Override
public void updateItem(FaDeal item, boolean empty) {
super.updateItem(item, empty) ;
if (item == null) {
setStyle("");
} else if (item.getInstrumentId().equals("1070")) {
setStyle("-fx-background-color: tomato;");
} else {
setStyle("");
}
}
});
请注意,如果显示行时instrumentId
的值发生更改,则使用上述代码时颜色不会自动更改,除非您执行其他操作。实现这一目标的最简单方法是使用提取器构造项目列表,该提取器返回instrumentIdProperty()
(假设您在FaDeal
中使用JavaFX属性模式)。