How could I get a converter for the selectionModel...
# tornadofx
b
How could I get a converter for the selectionModelProperty() of a combobox? the same way textfield does it?
Copy code
var language = bind(forceObjectProperty = true) { citation?.observable(Citation::language_id) as Property<Int>? }
    var languageEntry = bind {
        getElement(
            languageList,
            language.value).toProperty() }
this works
(associating the languageEntry to the combobox selection)