I need to make next dependency between two TextFields: when I click on any of them, they both change their styles.
I've tried to make it like this:
tb2.styleProperty().bindBidirectional(tb1.styleProperty());
tb1.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent t) {
System.out.println(tb1.styleProperty().toString());
System.out.println(tb2.styleProperty().toString());
tb1.getStyleClass().clear();
tb1.getStyleClass().add("green");
System.out.println(tb1.styleProperty().toString());
System.out.println(tb2.styleProperty().toString());
}
});
But it does not work: tb1 changes its style after clicking, but tb2 does not; Also, systemouts shows that styles are not equal:
StringProperty [bean: TextField[id=tb1, styleClass=green], name: style, value: ]
StringProperty [bean: TextField[id=tb2, styleClass=text-input text-field], name: style, value: ]
StringProperty [bean: TextField[id=tb1, styleClass=green], name: style, value: ]
StringProperty [bean: TextField[id=tb2, styleClass=text-input text-field], name: style, value: ]
Also, i've tried to bind their text Property, and it works (when i change text in one of my TextFields, text in the other one changes too):
tb2.textProperty().bindBidirectional(tb1.textProperty());
So, what am i doing wrong with Style Property?