Refresh single item in list view.

3
In version 7.3.0, it should be possible to refresh a single item in a list view, without the whole list refreshing. Currently this is not working, as the entire list is still being refreshed. What is the correct way to go about this?
asked
1 answers
10

You need to create a Java action to which you pass the object you want to refresh and then you can execute the following Java code:

// BEGIN USER CODE
FeedbackHelper.addRefreshObjectFeedback(getContext(), ObjectToRefresh.getId());
return true;
// END USER CODE

 

answered