Passing data between pages

0
Hello I am new to Mendix and creating a basic app. Is there any alternative way to pass data between two pages, where fields of first page is hard coded and I want to pass that data to a dynamic table. 
asked
1 answers
2
  1. You will need to create a non-persistent entity, with the attributes matching all the data that you want to pass. 
  2. Use a microflow as the datasource for a dataview on the second page
  3. In the microflow , create an object of the type of this new entity, assign all the values to  the various attributes of this new enity
  4. Pass this object as return parameter through the end event
answered