@carlwsigh alright, although that can be Kotlin's job with the null-type system.
c
carldea
12/01/2018, 8:59 PM
Ever thought of using Java 8's Optional object?
t
thomasnield
12/01/2018, 9:03 PM
@carldea of course. and I still do since RxJava doesn't allow null elements. I can't remember if it's toString() renders prettily so I'll have to look
c
carldea
12/01/2018, 9:12 PM
Off the top of my head, ComboBox you may want to look at the converterProperty().setValue(new StringConverter<T>() {
.. toString()
.. fromString()
...}
carldea
12/01/2018, 9:14 PM
Oh, my mistake, that's for when the combobox is editable.