I am trying to bind a TextArea\'s textProperty to a StringProperty in controller\'s initialize() method.
Both of them are listened by listeners to perform some behav
I found 2 solutions to you answer
1:
Declare the StringProperty as static
static
OR 2:
In the TextArea Listener just call toBind.get()
toBind.get()
But honestly I don't know why those work.