New to Telerik UI for ASP.NET AJAXStart 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");
} 
	

See Also

In this article
ExampleSee Also
Not finding the help you need?
Contact Support