JavaFX 8 - How to bind TextField text property to TableView integer property
问题 Let's say I have a situation like this: I have a TableView (tableAuthors) with two TableColumns (Id and Name). This is the AuthorProps POJO which is used by TableView : 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