TableView中的删除按钮不会消失

时间:2017-05-25 09:41:44

标签: java javafx fxml scenebuilder

我遇到了一个小问题(这真的不是什么大问题,但它让我很烦恼),因为在我从表中删除记录后,我还希望我的删除按钮消失,现在它的工作原理如下:

之前点击删除按钮:

enter image description here

点击点击第一条记录的删除按钮:

enter image description here

此外,这是我用来处理此事件的函数:

'e'

1 个答案:

答案 0 :(得分:2)

试试这个:

@Override
protected void updateItem(Boolean t, boolean empty) {
    super.updateItem(t, empty);
    if(empty){
        setGraphic(null);
    } else {
        setGraphic(cellButton);
    }
}