Unplanned
Last Updated: 16 Feb 2024 13:02 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 01 Sep 2016 12:23
Category: Scheduler/Reminder
Type: Bug Report
2
FIX. RadScheduler - appointment's time slot changes when scrolling in MonthView and the culture's FirstDayOfWeek is Monday
To reproduce:

public Form1()
{
    InitializeComponent();

    CultureInfo culture = new CultureInfo("en-US");
    culture.DateTimeFormat.FirstDayOfWeek = DayOfWeek.Monday;
    this.radScheduler1.Culture = culture;
    this.radScheduler1.ActiveViewType = Telerik.WinControls.UI.SchedulerViewType.Month;

    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);
}

Please refer to the attached gif file.
Attached Files:
0 comments