How to make some sort of confirmation popup after pressing save button?

0
Hello, id like to make a confirmation popup or something of that sort when the user clicks on the save button, confirming that their changes have been saved. How do I do that?  
asked
1 answers
0

In stead of using "Save changes" as the On Click event, you will need to call a Microflow. 

That microflow will have to include the following

  • Parameter - The object you are working with
  • Activity - Commit Object/s (save the object)
  • Activity - Close Page - (optional, if you want to close the form the user was working in)
  • Show Message - Can display a message like "Your thing is saved!)

See below:

image.png

answered