Mendix Microflow

0
I want to save the information with the save button and also want to trigger the microflow for further actions. How to do it ?
asked
2 answers
0

Change the OnClick action from Save Changes to Call a microflow. In that microflow add an activity for Save Changes and you can then both save changes and carry on with the other actions you want to add.

Don’t forget to add a close page activity if you’re calling from a popup window.

answered
-1

The standard Savebutton only does the save. Remove this Savebutton and add an Action Button that starts a microflow which takes as input-parameter of type (list of) entity that you want to save. The first activity in the microflow can be Commit for the input-parameter

answered