Unplanned
Last Updated: 30 Mar 2016 13:01 by ADMIN
ADMIN
Dimitar
Created on: 12 Mar 2015 15:02
Category: Scheduler/Reminder
Type: Bug Report
0
FIX. RadScheduler - the data source is not updated when appointment is added to the Appointments collection within begin/end update block.
To reproduce:
- Bind the scheduler to the default SchedulerData.mdb
- Add an appointment like this:

this.radScheduler1.Appointments.BeginUpdate();
Appointment appointment = CreateAppointment();
this.radScheduler1.Appointments.Add(appointment);
this.radScheduler1.Appointments.EndUpdate();

- Save the database
0 comments