Why StringProperty[value...] is displayed in my tableView JavaFX
If the field is ObservableValue like:
private SimpleStringProperty val = new SimpleStringProperty();
There should be accessors as:
public String getVal() {
val.get();
}
public void setVal(String newVal) {
val.set(newVal);
}
public StringProperty valProperty() {
return val;
}