New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
AppointmentClick
The AppointmentClick event occurs when the user clicks on an appointment and RadScheduler is inReadOnly mode- either ReadOnly="true" or AllowEdit="false". You can use this event to perform additional actions when an appointment is clicked.
AppointmentClick has two parameters:
-
sender is the scheduler that contains the appointment the user clicked.
-
e is an object of type SchedulerEventArgs. It has an Appointment property thatgives you access to the appointment that was clicked.
Example
C#
protected void RadScheduler1_AppointmentClick(object sender, SchedulerEventArgs e)
{
Response.Redirect("Page.aspx");
}