次のような状況があるとします。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());
});
TableColumn
はTextField
であるため、Name authorsNameProperty
をtxtName SimpleStringProperty
にバインドできますが、TableColumn
はTextField
であるため、Id authorsIdProperty
をtxtId SimpleIntegerProperty
にバインドできません。私の質問は、txtIdをId TableColumn
にバインドするにはどうすればよいですか?
追伸必要に応じて、実例を提供できます。
試してください:
txtId.textProperty().bindBidirectional(authorProps2.authorsIdProperty(), new NumberStringConverter());