I think `item?.observable(PersonKotlin::name)` ret...
# tornadofx
j
I think
item?.observable(PersonKotlin::name)
returns
Property<String?>?
for your Kotlin sample. I think the type should be
Property<String?>
instead?
r
Indeed,
item?.observable(PersonKotlin::name)
returns `Property<String?>?. but because my prop PersonKotlin::name is of type
String?
when I set as type of
String
it's working, but it doesn't work as I want