Re: JavaFx: not String null values and binding

2015-06-10 Thread Tom Schindl
So if the value is null-able IntegerProperty is not the right type! You need to use a ObjectProperty but this is more of a user forum question. Tom On 10.06.15 13:56, Александр Свиридов wrote: > > I have a POJO class Test that has Integer and String fields (all of them can > be null). And I hav

JavaFx: not String null values and binding

2015-06-10 Thread Александр Свиридов
I have a POJO class Test that has Integer and String fields (all of them can be null). And I have javafx form with TextFields. To bind Test fields to text fields I use adapter. Now I create an instance of Test (all fields will be null) Test test=new Test(); TestAdapter adapter=newTestAdapter(tes