Retrieved a list as the resource of a data grid

0
Hello, I want to implement a function that will call a microflow when the user clicks the UnitName button. In microflow, I can get the Unit name they chose, and I use this parameter in the XPath to filter my data. The question is, how can I send this List to a Datagrid on another page?   Thanks,
asked
1 answers
3

In the microflow you shared, use a Show Page action to open your new page, passing the Unit as a parameter to that page. On the new page, use a data view sourced from a page parameter (Unit), and then put a data grid inside the data view. Then you can fetch the data grid items using the Database or XPath sources via an association from Unit, or via another microflow.

answered