This is a migrated thread and some comments may be shown as answers.

[Solved] AppointmentUpdate Event Issue When Drag & Drop a Recurring Appointment

1 Answer 63 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Eric
Top achievements
Rank 1
Eric asked on 21 Aug 2009, 05:52 PM
When I move an occurrence of a recurring appointment in the RadScheduler, both AppointmentUpdateEventArgs.Appointment and AppointmentUpdateEventArgs.ModifiedAppointment reference the occurrence's master appointment. I do not have this problem with nonrecurring appointments. Has anyone else run into this issue and found a way to work around it?

1 Answer, 1 is accepted

Sort by
0
Accepted
Peter
Telerik team
answered on 25 Aug 2009, 11:15 AM
Hello Eric,

This is expected. You should use RecurrenceExceptionCreated instead. For example:

protected void RadScheduler1_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)  
    {  
        e.ExceptionAppointment.Subject = "subject changed from " + e.OccurrenceAppointment.Subject + " to test";  
          
    } 


Regards,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Scheduler
Asked by
Eric
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or