任何人都知道是否可以启用/禁用单个JFace TextCellEditor字段。

例如,如果我有一个包含5列的表,则我希望最后一个单元格为空,除非填写了字段#4。

最佳答案

如果使用的是EditingSupport类,则可以将canEdit设置为返回true。

TableViewerColumn column = new TableViewerColumn(viewer, SWT.NONE);

EditingSupport editingSupport = new EditingSupport(viewer)
{
    ... implement abstract methods ...

    protected boolean canEdit(Object element)
    {
        return (/* criteria to determine if this column is editable*/)
    }
};

column.setEditingSupport(editingSupport);

10-04 12:56