How can I display a list of items in a table format using OutSystems?
I'm currently working on an OutSystems application and I need to show a list of items in a table. I have a basic understanding of how to create entities and screens, but I'm not sure about the best way to display the data in a table format. Could someone please guide me through the steps or provide an example of how to achieve this?
Thank you!
Hi @sillasneto ,
To display a list in a table format in OutSystems:
Add a Table Records Widget:
Drag the Table Records widget onto your screen.
Bind Data:
Set the Source Record List property to your data source (e.g., an aggregate fetching records).
Configure Columns:
Add Table Column widgets inside the Table Records and bind them to your entity attributes.
Publish and Test:
Publish the app and check the screen to see your data displayed in a table.
Let me know if you need more details!