Real time list view refresh

1
Hello, I have exposed API that update ‘Notification’ attribute in Project object- to indicate if there is new change for that Project. I have also an overview page that holds list view of Projects. I tried refresh Project object from the API, so it will be reflected in the list view but it’s not working. I also tried to use microflow timer widget and refresh the list- it is working but if user pressed ‘load more’ (to see more objects ), it returns the list to its original state- which is very bad UX. How can I refresh Project list view in real time? Thanks in advanced, Almog
asked
1 answers
0

You can use the pusher widget.
https://marketplace.mendix.com/link/component/107957

In your exposed API microflow, create an event to publish an update for the object. And on the page, add a listener to update the object in client. 

Let me know how it works out :)

answered