在 JavaFX 2 中,我想禁用列中的一些单元格以进行编辑。类似的东西
TableModel.isCellEditable(row, col)
在摇摆。我需要行中的项目来决定单元格是否可编辑,单元格值不够。
我设法编写的代码是:
TableView<FilterItem> localTableView = new TableView<FilterItem>() {
public void edit(int paramInt, TableColumn<FilterItem, ?> paramTableColumn) {
if (paramInt >= 0) {
FilterItem item = getItems().get(paramInt); //get item in the row
if (!item.isPropagated()) { //condition
return;
}
}
super.edit(paramInt, paramTableColumn);
}
};
问题是没有视觉线索表明某些项目被禁用以进行编辑。
设置单元工厂是我尝试的第一件事,但我无法在更新单元方法中访问行数据:
localValueCol.setCellFactory(
new Callback<TableColumn<FilterItem, String>, TableCell<FilterItem, String>>() {
@Override
public TableCell<FilterItem, String> call(TableColumn<FilterItem, String> paramTableColumn) {
return new TextFieldTableCell<FilterItem, String>() {
@Override
public void updateItem(String s, boolean b) {
super.updateItem(s, b);
// it is possible set editable property here,
// but other cells are not available to make a decision
}
};
}
});