<@U0BJ35747> That's because your columns are bound...
# tornadofx
e
@hastebrot That's because your columns are bound against the getter/setter instead of the property of the domain object, so the tableview cannot be aware of any changes. Change
column("country", Country::country)
to
column("country", Country::countryProperty)
etc, and you should be golden.