using microflow to populate a listview

0
I'm a little new to Mendix so please forgive me if I sound dumb, but I wanted to ask why my local page is failing to show the listview that I made to connect with my microflow, when I selected data source as microflow, it would still give me nothing when I run it.    I'm trying to build like a bar menu app with some handmade entity, here's a picture of all of the component.        when I run project it looks like this 
asked
1 answers
1

Hi Quoc Le,

Please make sure to check the access rules in your domain model to confirm that the user role assigned to the current user has read access to the DrinkItem entity. Without the proper permissions, the data will not be retrieved or displayed on the page. Additionally, ensure that the attributes of DrinkItem such as the name, price, or any other relevant details—are properly included and visible within the ListView structure on your page. If these attributes are not added to the ListView, it may appear as though nothing is being displayed even if the data is successfully retrieved.

answered