RadControls for ASP.NET AJAX The AppointmentClick event occurs when the user clicks on an appointment. 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 that
gives you access to the appointment that was clicked.
Example
CopyC#
protected void RadScheduler1_AppointmentClick(object sender, SchedulerEventArgs e)
{
Response.Redirect("Page.aspx");
}
CopyVB.NET
Protected Sub RadScheduler1_AppointmentClick(ByVal sender As Object, ByVal e As SchedulerEventArgs) Handles RadScheduler1.AppointmentClick
Response.Redirect("Page.aspx")
End Sub
See Also