Declined
Last Updated: 21 Jun 2018 13:54 by ADMIN
Bart
Created on: 19 May 2018 09:39
Category: Scheduler/Reminder
Type: Feature Request
0
ADD. Scheduler - conflicted appointments build-in check
It is possible to schedule multiple appointments in the same time period. In some scenario's this should be avoided. When the agenda can change from outside the scheduler, sometimes conflics will apear when the resource is not visible on the scheduler. It would be nice to have a list of all the conflicted appointments

1 comment
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 21 May 2018 12:47
Hello, Bart,     
Similar to Outlook, RadScheduler doesn't prevent adding conflicting appointments and this behavior shouldn't be changed. Note that the desired functionality can be easily implemented by handling the AppointmentAdded event and removing the new appointment from the Appointments collection. Here is a sample code snippet:

        private void radScheduler1_AppointmentAdded(object sender, AppointmentAddedEventArgs e)
        {
            if (e.Appointment.Start.DayOfWeek== DayOfWeek.Monday)
            {
                this.radScheduler1.Appointments.Remove(e.Appointment);
            }
        }

If it doesn't suit your scenario, feel free to submit a support ticket providing more details about the precise case. Thus, we would be able to think about a suitable solution and assist you further.