in javafx8 if I create property:
dateProperty = new SimpleStringProperty(this, "date");
and bind this property in fxml as:
<TextField text="${mycomp.date}"/>
this works well.
But if I use constructor with short form:
dateProperty = new SimpleStringProperty();
then binding in javafx8 not worked (but it works in javafx2.2)
dateProperty = new SimpleStringProperty(this, "date");
and bind this property in fxml as:
<TextField text="${mycomp.date}"/>
this works well.
But if I use constructor with short form:
dateProperty = new SimpleStringProperty();
then binding in javafx8 not worked (but it works in javafx2.2)