How to create a page with multiple page parameters

2
I have a datagrid with multiple selection mode. I've created a microflow button which takes a list of selected objects, gets first 2 of them and then shows a page with table (1x2). In each cell I have a dataview for my type of objects. Is it possible to show this page with 2 different params of the same type? Thanks.
asked
1 answers
5

I think the easiest way would be to make a transient object with two references to the same entity (the one you want to show). In the microflow, set the first object on RefOne and the second object to RefTwo. From there you can have the dataview show the two objects over the references separately.

answered