kastork
05/04/2018, 9:04 PMval salutations = listOf("Herr", "Frau", "")
and just have the property be a String instead of a Salutation
?Nico Smeenk
05/04/2018, 9:26 PMcombobox<Salutation>(model.salutation, mainController.loadList()) {
cellFormat {
text = it.salutation
}
}
button("reset") { action { model.salutation.setValue(null) } }