How to output input for build a custom widget training module

0
How does one output an input value that is shown in the “Build a custom widget” training module? https://gettingstarted.mendixcloud.com/link/path/45 It does not explain how this is done. It appears to call a microflow but it would be nice if they explained these steps before diving into explaining how to create the widget...
asked
1 answers
0

Ok, I figured it out… 

You need to first set up a “CreateEntity” microflow and add a Create Object of “MyFirstModule.Entity” and then end the event with the $NewEntity:

You can then create a second microflow with the Entity parameter and then add a “Show Message” of $Entity/Attribute

 

You can then drop in a Data View and set the type to microflow and select your CreateEntity microflow:

 

And then on your button, on click call the echoEntity microflow:

answered