How do I create nested data (pages)?

0
Hi everyone. I have a main Location Overview page, and I want a user to be able to click on the "assignees" button that will lead them to a new page that will pull up a filtered list of all the assignees / employees in that location. Although I am currently able to add an assignee to each location, I cannot see those filtered assignees when I click ont he assignees button for a specific location. Instead, whatever assignee I enter, it just goes straight to the Employees overview page, not the Location_Assignee page. How do I fix this? Maybe my domain model isn't right from the first place? Not sure how to approach this.   
asked
1 answers
0

Assign a microflow to the button with the input parameter Location.

Add an activity to retireve the employee_location record by association form the location.

Then add an open page activity.

This needs to open a page with the employee_location entity as the source for a data view, which you just retrieved.

Inside the dataview add a datagrid that shows the Employees over the association between Employee_Location and Employees.

answered