Hello, Rick,
According to the provided brief information, it seems that you want to detect when an appointment is clicked in RadScheduler. For this purpose, you can subscribe to the RadScheduler.MouseClick event and detect the element under the mouse:
private void radScheduler1_MouseClick(object sender, MouseEventArgs e)
{
AppointmentElement appointmentElement = this.radScheduler1.ElementTree.GetElementAtPoint(e.Location) as AppointmentElement;
if (appointmentElement!=null)
{
}
}
I hope this information helps. If you need any further assistance please don't hesitate to contact me.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get
quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.
Learn More.