``` modelcode… val articletypeProperty = articlety...
# tornadofx
b
Copy code
modelcode…
val articletypeProperty = articletype_id.objectBinding {
        dataController.articletypeList.filtered { item -> item.id == it }.first()
    }

viewcode…
{ combobox<CodeNameEntry>(
        model.articletypeProperty,
        dataController.articletypeList
    )
To be able to update my combobox selection automatically, I'm trying to do that, but it obviously doesn't work…