How to program auto-save on change?

0
As a user changes or edits data on page, we should either auto-save on recognizing a change OR Give a warning to user to save their changes before they navigate away from the page. How do I go about doing this?
asked
2 answers
4

There are two great widgets for this in the app store:

1) https://appstore.home.mendix.com/link/app/108281/

Lets you define an event for any change to an object. Use it to save changes when they occur.
2) https://appstore.home.mendix.com/link/app/21721/ 

Shows a message when the user tries to navigate away from a page. Use it to remind users that they have unsaved information.

-Andrej

answered
2

Create a Save Entity Microflow and attach it to the On Change event of the field being editied.

answered