<@UABKZKDFY> How about `val salutations = listOf("...
# tornadofx
k
@Nico Smeenk How about
val salutations = listOf("Herr", "Frau", "")
and just have the property be a String instead of a
Salutation
?
n
not beautiful but working:
Copy code
combobox<Salutation>(model.salutation, mainController.loadList()) {
    cellFormat {
        text = it.salutation
    }
}
button("reset") { action { model.salutation.setValue(null) } }