Hi @edvin! I have a quick question. I'm trying to bind a list of POJOs to a table and make the selected one editable, so I made an ItemViewModel with fields like
val name = bind(PojoClass::name)
, but when I edit the field in the UI and then commit the viewmodel, the underlying
item
does not get updated at all. How should I go about the binding in this case?