Date Picker is not working in native app

0
Hi All,       I'm having a non persistant entity with start and end date .In native mobile screen when I select date from calender, the calender is not getting closed and selected date is not showing up. The same is working in web application.   Can any suggest solution.
asked
1 answers
0
  • Make sure that your date picker widget is properly bound to the date fields (start date and end date) in the non-persistent entity. If you're using a Date Picker widget in Mendix, verify that it's correctly linked to the entity's attributes.
  • Since it's a non-persistent entity, Mendix may have issues handling it in the context of mobile. Non-persistent entities are not stored in the database, so make sure that the data entered (the date) is being saved temporarily to the context, or use a different approach for passing the data to other parts of the app.

If the data isn’t being saved correctly to the non-persistent entity, the mobile app won’t reflect the selected date properly. You could also try using a Persistent entity for better integration with the Mendix native mobile functionality, or ensure that you are handling the lifecycle of the non-persistent entity correctly.

answered