List view widget shows other data

-1
I take a list of object from database to show it in a list view widget. But when I execute and open the page, it shows other data in the list from the database. Which is the reason? *I use a microflow to take the data from json and storage it in the database, so then I take it from the database to show it in the list view. I hope you guys can help me.  
asked
2 answers
1

What do you mean with” It shows other data in the list from the database”

If you set the datasource of a listview to Database, without any other constraint, it will retrieve and show all records from the database. Thus If you call a Rest API which stores data before opening the page, the page will still display ALL the record. including those who weren’t retrieved in previous Rest call.

answered
0

I think you need to place the list view inside a data view and set the data source of the list view to association. In that case it will only list the items associated with the selected item in your data view.

 

I hope this helps.

answered