Unplanned
Last Updated: 07 Jun 2018 10:01 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 04 Aug 2015 12:01
Category: Scheduler/Reminder
Type: Bug Report
4
FIX. RadScheduler - missing appointments scroll-bar in MonthView when the AutoSizeAppointments property is set to true
To reproduce:
 public Form1()
 {
     InitializeComponent();

     for (int i = 0; i < 7; i++)
     {
         this.radScheduler1.Appointments.Add(new Appointment(DateTime.Now.AddHours(i),TimeSpan.FromHours(3),"App" + i));
     }
     this.radScheduler1.AutoSizeAppointments = true;
     this.radScheduler1.ActiveViewType = SchedulerViewType.Month;
     SchedulerMonthView monthView = this.radScheduler1.GetMonthView();
    
     monthView.EnableAppointmentsScrolling = true;
 }

Workaround: set the AutoSizeAppointments property to false.
Attached Files:
0 comments