How to Implement Change Password in Mendix Native Mobile App

0
Hello Mendix Community, I hope you're all doing well. I'm currently working on a Mendix native mobile app project, and I'm facing some challenges in implementing a change password feature. I'm seeking guidance and best practices from the experienced members of this community.
asked
2 answers
1

Hi Jayasree

 

Create your page and nanoflows around a non-persistent entity like AccountPasswordData. 

In your save nanoflow, check for internet connection and then call a microflow with NPE as parameter. Do the server logic like Ashishkumar suggests with current microflows and commit Account. Then use a selective sync in the microflow to update the Account object on device. 

 

Good luck. 

answered
0

Hello Jayasree, 

 

I hope you’re doing well. 

 

In order to implement the change password functionality in Mendix Native Application, I’d recommend you to please check the functionality of change password in Account Overview Page. 

 

Click on one particular user and check the change password functionality on it. I believe you can implement the same in Mendix however, you will need to work synchronization while implementing same logic in nanoflow. 

 

I hope I’ve answered your query. 

 

Regards, 

 

Ashishkumar 

 

answered