有一个
TableColumn
定义为
TableColumn<Target, String> tableColumnLocation;
并按如下方式填充:
tableColumnLocation.setCellValueFactory(new
PropertyValueFactory<Target, String>("name"));
tableColumnLocation.setCellFactory(ComboBoxTableCell.forTableColumn(locationValues));
哪里
locationValues
是从数据库读取的字符串集。
正在尝试禁用
tableColumnLocation
如果未选中其他复选框列,则下拉列表。所以问题是如何禁用
ComboBoxTableCell
。如有任何建议,将不胜感激。
已经能够禁用其他
TableColumn表格列
如下所示,但不确定如何继续此操作。
tableColumnQty.setCellFactory(
new Callback<TableColumn<Test, String>, TableCell<Test, String>>() {
@Override
public TableCell<Test, String> call(TableColumn<Test, String> paramTableColumn) {
return new TextFieldTableCell<Test, String>(new DefaultStringConverter()) {
@Override
public void updateItem(String s, boolean b) {
super.updateItem(s, b);
if(!isEmpty()) {
Test item = getTableView().getItems().get(getIndex());
if (item.getTarget().equalsIgnoreCase("0")) {
setDisable(true);
setEditable(false);
this.setStyle("-fx-background-color: lightgrey");
} else {
setDisable(false);
setEditable(true);
setStyle("");
}
}
}
};
}
});