Unplanned
Last Updated: 04 Oct 2016 08:12 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 08 Sep 2016 08:39
Category: Scheduler/Reminder
Type: Bug Report
1
FIX. RadScheduler - appointments can't be selected in MonthView when vertical scrollbar is displayed
To reproduce:

this.radScheduler1.ActiveViewType = SchedulerViewType.Month;
for (int i = 0; i < 10; i++)
{
    this.radScheduler1.Appointments.Add(new Appointment(DateTime.Now.AddHours(i),TimeSpan.FromMinutes(30),"A"+i));
}
 
Scroll to the bottom and try to select an appointment. You will notice that selection is not possible. The attached gif file illustrates the incorrect behavior. 

Workaround: use the overflow button by setting the SchedulerMonthView.EnableCellOverflowButton property to true:
SchedulerMonthView monthView = this.radScheduler1.GetMonthView();
 monthView.EnableCellOverflowButton = true;
Attached Files:
0 comments