How do i make a listview inside a list view only reference a certian thing from the outside listview

0
I have employee ID on the outside list view, so the first list will show all employees, then inside each list view thing is a smaller listview, that lists all their schedules. How can I get it so that the smaller listview will only show shifts for the employee that its in?   ID_1 is how I track the ID
asked
1 answers
0

That can be accomplished by setting up the correct datasource for the inner listview.

In order of prefered option:

 

  1. Use datasource assocation if that is possible in your domain model.
  2. Use datasource database / xpath with a certain xpath constrain (for example [Schedule_Employee = $CurrentObject])
  3. Or use a datasource microflow to have a more advanced filtering if needed
answered