Hi James,
Thank you for your interest in Syncfusion products.
We have checked and “Navigate to SelectedDate while switching ScheduleView” in Xamarin iOS is achievable by setting selecteddate as MoveToDate in the didSelectDate Event. From that you can achieve your requirement, please find the below code example,
SFSchedule schedule = new SFSchedule(); schedule.Delegate = new ScheduleDelegate();
public class ScheduleDelegate : SFScheduleDelegate { internal ScheduleAppointment ScheduleApp; public override void didSelectDate(SFSchedule schedule, Foundation.NSDate selectedDate, Foundation.NSArray appointments) { schedule.ScheduleView = SFScheduleView.SFScheduleViewDay; schedule.MoveToDate(selectedDate); } }
|
Please let us know, if you have any query on this.
Regards,
Subburaj Pandian V.