Mar 09, 2023 09:33 AM
Hi,
We have a calendar view that shows pretty nicely on the desktop.
However, the mobile app shows the meetings' auto number field, and overall it's not user-friendly.
How do I customize the mobile app calendar view?
Thanks,
Giora
Solved! Go to Solution.
Mar 10, 2023 06:41 AM
Hm, if you primarily want your users to view the data via the Schedule view inside the Calendar view, you could try just using the Grid view and grouping by the date instead, which would give you something like this that would load up immediately once the user opened the table?
Mar 10, 2023 04:34 AM
I don't think you can I'm afraid, it seems to just show the data from the record's primary field and what labels we set as visible on desktop doesn't affect it
You might want to use the workaround of making your primary field a formula field that use to format the data you'd like to display, so something like `{ID} & " - " & {Name}` and such
Mar 10, 2023 06:01 AM
Thanks Adam,
Following your suggestion, I changed the primary field, and it works.
The other pitfall I'm yet to meet, is that the default view is monthly.
At the moment, the only way to see a list of the upcoming events, is as follows:
Any additional recommendations/ideas?
Mar 10, 2023 06:41 AM
Hm, if you primarily want your users to view the data via the Schedule view inside the Calendar view, you could try just using the Grid view and grouping by the date instead, which would give you something like this that would load up immediately once the user opened the table?
Mar 11, 2023 08:43 PM
Thanks.