Completed
Last Updated: 01 Oct 2014 13:03 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 18 Jul 2014 09:18
Category: Scheduler/Reminder
Type: Bug Report
0
FIX. RadScheduler- Missing appointments when the EnableExactTimeRendering is enabled and the RulerStartScale is changed
To reproduce:
public Form1()
{
    InitializeComponent(); 
    for (int i = 0; i < 10; i++)
    {
        Appointment appointment = new Appointment(DateTime.Now.AddHours(i),
            TimeSpan.FromMinutes(30), "Summary", "Description");
        appointment.StatusId = 2;
        appointment.BackgroundId = 6;
        this.radScheduler1.Appointments.Add(appointment);
    }

    this.radScheduler1.ActiveViewType = SchedulerViewType.Day;
    SchedulerDayView dayView = this.radScheduler1.GetDayView();
    dayView.RangeFactor = ScaleRange.FiveMinutes;
    dayView.RulerStartScale = DateTime.Now.Hour - 1;
    this.radScheduler1.EnableExactTimeRendering = true;
}
0 comments