Completed
Last Updated: 04 Oct 2016 07:41 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 01 Sep 2016 12:28
Category: Scheduler/Reminder
Type: Bug Report
0
FIX. RadScheduler - TargetInvocationException when scrolling with mouse wheel in MonthView and ExactTimeRendering is enabled
To reproduce:

public Form1()
{
    InitializeComponent();
    this.radScheduler1.ActiveViewType = Telerik.WinControls.UI.SchedulerViewType.Month;

    CultureInfo culture = new CultureInfo("en-US");
    culture.DateTimeFormat.FirstDayOfWeek = DayOfWeek.Monday;
    this.radScheduler1.Culture = culture;
   
    Appointment a = new Appointment(new DateTime(2016, 8, 29, 0, 0, 0), new DateTime(2016, 9, 5, 0, 0, 0), "Meeting");

    this.radScheduler1.Appointments.Add(a);

    this.radScheduler1.FocusedDate = new DateTime(2016, 9, 1);

    this.radScheduler1.EnableExactTimeRendering = true;
}

When you run the application starting scrolling with the mouse wheel up/down.

Workaround: do not set the FirstDayOfWeek to Monday.
Attached Files:
0 comments