web-dev-qa-db-ja.com

JavaFX 8-TextFieldテキストプロパティをTableView整数プロパティにバインドする方法

次のような状況があるとします。2つのTableView(IdとName)を持つTableColumns(tableAuthors)があります。

これはTableViewで使用されるAuthorProps POJOです。

import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;


public class AuthorProps {
    private final SimpleIntegerProperty authorsId;
    private final SimpleStringProperty authorsName;


    public AuthorProps(int authorsId, String authorsName) {
        this.authorsId = new SimpleIntegerProperty(authorsId);
        this.authorsName = new SimpleStringProperty( authorsName);
    }

    public int getAuthorsId() {
        return authorsId.get();
    }

    public SimpleIntegerProperty authorsIdProperty() {
        return authorsId;
    }

    public void setAuthorsId(int authorsId) {
        this.authorsId.set(authorsId);
    }

    public String getAuthorsName() {
        return authorsName.get();
    }

    public SimpleStringProperty authorsNameProperty() {
        return authorsName;
    }

    public void setAuthorsName(String authorsName) {
        this.authorsName.set(authorsName);
    }
}

そして、2つのTextFields(txtIdとtxtName)があるとします。次に、テーブルセルの値をTextFieldsにバインドします。

 tableAuthors.getSelectionModel()
                .selectedItemProperty()
                .addListener((observableValue, authorProps, authorProps2) -> {
                    //This works:
                    txtName.textProperty().bindBidirectional(authorProps2.authorsNameProperty());
                    //This doesn't work:
                    txtId.textProperty().bindBidirectional(authorProps2.authorsIdProperty());
                });

TableColumnTextFieldであるため、Name authorsNamePropertyをtxtName SimpleStringPropertyにバインドできますが、TableColumnTextFieldであるため、Id authorsIdPropertyをtxtId SimpleIntegerPropertyにバインドできません。私の質問は、txtIdをId TableColumnにバインドするにはどうすればよいですか?

追伸必要に応じて、実例を提供できます。

15
Branislav Lazic

試してください:

txtId.textProperty().bindBidirectional(authorProps2.authorsIdProperty(), new NumberStringConverter());
17
James_D