Passing list objects to a Page from microflow

0
I am trying to pass list of objects from within microflow to the page action but unable to pass.  Is it possible to pass objects list within microflow to page ?  
asked
2 answers
2

Hi Mohamed,

To display a list generated in a microflow on a page, you’ll need to add a data grid or a list view to a page and set the data source to “Microflow”.

 

 

For more information, you can go to https://docs.mendix.com/refguide/microflow-source 

answered
1

Hi,

No its not possible to send a list to page but u can do a workaround to achieve this

use datasource microflow to get the list in page or create a new object(seperate entity) and associate that move entity and pass the newly created object to a page and retrieve the move list in that page using the association.

 

Thanks.

answered