Re: JavaFx: can data binding (textfield) be used in production mode?

2015-06-13 Thread Tom Schindl
In the given sample the adapter is a local variable and hence it is garbage collected at some point in time and because javafx bindings are implemented with weaklisteners (see the javadoc) it will stop updateing your Bean! So it works as designed and your code is simply wrong! Tom Von meinem i

JavaFx: can data binding (textfield) be used in production mode?

2015-06-13 Thread Александр Свиридов
I use java 8.0.45. I have implemented my first javafx application (very simple) with data binding. However, biding from user input-> pojo seems to work with bugs. I've checked about 200 times. I entered new values in text fields and after that I checked model values. The same code, the same my b