How we can pass the attribute from one step wizard to another step in mendix.

0
I have created a wizard of 3 steps and I want one of the data in step 1 to be printed on Step 2. Step 1 is having persistable entity. With the help of non persistable entity I want to call one attribute of Step 1 to Step 2. Can anyone help me wth the same?  
asked
1 answers
1

You can not pass attributes from a page to another page or a microflow, you can only pass objects. You could pass you persistable object to step 2. You can also create a non persistable object and pass it to step2 (use a microflow to navigate to step 2).

How you solve this always depends on what you need to achieve.

answered