New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
RecurrenceExceptionCreated
The RecurrenceExceptionCreated event occurs when the user creates an exception in a recurrent series. RecurrenceExceptionCreated has two parameters:
-
sender is the scheduler control.
-
e is an object of type RecurrenceExceptionCreatedEventArgs. It has four properties:- Appointment- the master appointment;- ExceptionAppointment- the newly created exception appointment;- OccurenceAppointment- the original occurrencebefore the exception was created;- Cancel is a boolean value that lets you prevent the creation of the exception;
Example
C#
protected void RadScheduler1_RecurrenceExceptionCreated(object sender, Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs e)
{
Response.Write("An exception with subject: " + e.ExceptionAppointment.Subject + " was created");
}