New to Telerik UI for ASP.NET AJAX? Download 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


protected void RadScheduler1_AppointmentClick(object sender, SchedulerEventArgs e)
{
    Response.Redirect("Page.aspx");
}  


Protected Sub RadScheduler1_AppointmentClick(ByVal sender As Object, ByVal e As SchedulerEventArgs) Handles RadScheduler1.AppointmentClick
    Response.Redirect("Page.aspx")
End Sub

See Also

In this article