Offline Mobile App

1
Running of microflows in an offline mode is possible in latest mendix Modeler. As I have requirement where most of the application works in the offline , and Sync will happen whenever the connectivity is available.Please help me up to what extend i can use microflows to run in offline.
asked
2 answers
2

As far as I can tell, microflows are not possible in an offline hybrid app. I receive the error message: "Microflows cannot be used on pages that are accessible through the offline profile."

Take a look at the documentation: https://docs.mendix.com/refguide/offline

answered
1

As Robert says, it is not possible to directly invoke microflows from an offline app. What you can use however, are before/after commit microflows which will be triggered on synchronization, and receive updated objects back. You can even manually invoke synchronization (for example by using an action button or on save) to force this behavior.

answered