Hi,
I got it to work, by creating a dummy variable, that I refresh it so, (excuse any typos, I renamed a few things for the email) eg
xml listview:
<ListView
bind:source="{parts}"
...>
In ViewModel:
@ItemPresentationModel(value=XXItemPresentationalModel.class)
@DependsOnStateOf("dummy")
public List<Part> getParts() {return parts;}
so, the listview only gets updated, if I reset this dummy variable, ie parts getting updated is not enough to get it to refresh? so, calling setDummy(getDummy()); will refresh the listview.
Any thoughts please??
regards