Completed
Last Updated: 03 Sep 2014 06:57 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 26 Aug 2014 09:54
Category: Scheduler/Reminder
Type: Bug Report
0
FIX. RadScheduler - ArgumentException when navigating to previous appointment
To reproduce:

public Form1()
{
    InitializeComponent();

    this.radScheduler1.GetDayView().RangeFactor = Telerik.WinControls.UI.ScaleRange.HalfHour;

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 11, 0, 0, 0),
                                                        new DateTime(2014, 7, 21, 12, 0, 0, 0)));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 15, 30, 45, 137 ),
                                                        new DateTime(2014, 7, 21, 15, 30, 58, 600 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 10, 0, 0, 0 ),
                                                        new DateTime(2014, 7, 21, 11, 0, 0, 0 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 15, 30, 19, 633 ),
                                                        new DateTime(2014, 7, 21, 15, 30, 31, 253 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 15, 29, 20, 337 ),
                                                        new DateTime(2014, 7, 21, 15, 29, 52, 767 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 13, 0, 0, 0 ),
                                                        new DateTime(2014, 7, 21, 14, 0, 0, 0 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 15, 0, 0, 0 ),
                                                        new DateTime(2014, 7, 21, 16, 0, 0, 0 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 15, 28, 15, 500 ),
                                                        new DateTime(2014, 7, 21, 15, 28, 37, 310 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 14, 0, 0, 0 ),
                                                        new DateTime(2014, 7, 21, 15, 0, 0, 0 )));

    this.radScheduler1.Appointments.Add(new Appointment(new DateTime(2014, 7, 21, 15, 27, 19, 123 ),
                                                        new DateTime(2014, 7, 21, 15, 27, 57, 357 )));
}
0 comments