Unplanned
Last Updated: 14 Jul 2021 14:55 by Ganpat
Ganpat
Created on: 14 Jul 2021 14:07
Category: Calendar & Scheduling
Type: Bug Report
0
Calendar: [iOS] DayView cannot be scrolled by swiping the top week area when MinDate and MaxDate are set and the interval is less than 7 days
If you use DayView and define MinDate and MaxDate with such values that the interval between them is less than a week, the top week area with the days cannot be scrolled.
1 comment
Ganpat
Posted on: 14 Jul 2021 14:55

Hello Team,

<telerikInput:RadCalendar
  x:Name         = "TKCalendarView"
  ViewMode        = "Day"                    
/>

TKCalendarView.MinDate = new DateTime(2022, 07, 09);
TKCalendarView.MaxDate = TKCalendarView.MinDate.AddDays(5);
TKCalendarView.SelectedDate = TKCalendarView.MinDate;

Use this data to reproduce the above issue.