如何根据tablerow

时间:2017-04-20 21:39:43

标签: javafx

正如标题所述,我试图根据表格行数据中的布尔值启用/禁用表格行中的按钮。到目前为止,这是我的代码:

col.setCellFactory(new Callback<TableColumn<ExampleRow, String>, TableCell<ExampleRow, String>>() {
        @Override
        public TableCell call(final TableColumn<ExampleRow, String> param){
            final Button btn = new Button("Save");
            final TableCell<ExampleRow, String> cell = new TableCell<ExampleRow, String>(){

                @Override
                public void updateItem(String item, boolean empty){
                    super.updateItem(item, empty);
                    if(empty){
                        setGraphic(null);
                        setText(null);
                    } else {
                        btn.setPrefWidth(col.getWidth());
                        btn.setPadding(Insets.EMPTY);
                        btn.setOnAction(event -> {

                        });
                        setGraphic(btn);
                        setText(null);
                    }
                }
            };
            ExampleRow row = (ExampleRow)cell.getTableRow().getItem(); //NPE here
            btn.setDisable(!row.hasChanged());
            return cell;
        }
    });

不幸的是,我的代码在底线的第五个中断。如果我排除该行并将下面的行更改为btn.setDisable(true),则效果非常好。如何根据按钮所在的数据禁用此按钮?

1 个答案:

答案 0 :(得分:2)

您仍然没有使用该项目,因此您可以将其设为Boolean并使用changed属性的值。这允许您在updateItem方法中启用/禁用按钮:

示例:

public static class Item {
    private final BooleanProperty changed = new SimpleBooleanProperty();

    public final boolean isChanged() {
        return this.changed.get();
    }

    public final void setChanged(boolean value) {
        this.changed.set(value);
    }

    public final BooleanProperty changedProperty() {
        return this.changed;
    }

}

@Override
public void start(Stage primaryStage) {
    TableView<Item> table = new TableView();
    table.getItems().addAll(new Item(), new Item(), new Item());

    TableColumn<Item, Boolean> column = new TableColumn<>();
    column.setCellValueFactory(cd -> cd.getValue().changedProperty());
    column.setCellFactory(col -> new TableCell<Item, Boolean>() {

        final Button btn = new Button("Save");

        {
            btn.setOnAction(evt -> {
                Item item = (Item) getTableRow().getItem();
                item.setChanged(false);
            });
        }

        @Override
        protected void updateItem(Boolean item, boolean empty) {
            super.updateItem(item, empty);

            if (empty || item == null) {
                setGraphic(null);
            } else {
                btn.setDisable(!item);
                setGraphic(btn);
            }
        }

    });

    table.getColumns().add(column);

    Button btn = new Button("change");
    btn.setOnAction((ActionEvent event) -> {
        Item item = table.getSelectionModel().getSelectedItem();
        if (item != null) {
            item.setChanged(true);
        }
    });

    VBox root = new VBox(btn, table);

    Scene scene = new Scene(root);

    primaryStage.setScene(scene);
    primaryStage.show();
}

BTW:TableView使用cellFactory创建单元格。 itemtabletableRow属性稍后会更新。因此,检索cellFactory的{​​{1}}方法本身中的任何值都没有意义,因为当时没有分配这些值。