Unplanned
Last Updated: 30 Jun 2023 07:19 by Alberto
Alberto
Created on: 30 Jun 2023 07:19
Category: Calendar & Scheduling
Type: Bug Report
0
Calendar: [iOS] Exception when changing the ViewMode and AppointmentTemplateSelector is used

When changing the view mode from Day to MultiDay or opposite, and having an AppointmentTemplateSelector, exception is thrown on iOS. 

workaround: 

Return the default template when platform is iOS.

if(Device.RuntimePlatform == Device.iOS)

            {

                return default;

            }

0 comments