There is no event For the Appointment click event in Rad Scheduler, is there any option in it the rad scheduler. Please do the needful.
2 Answers, 1 is accepted
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 03 Sep 2019, 09:50 AM
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:
privatevoidradScheduler1_MouseClick(object sender, MouseEventArgs e)
{
AppointmentElement appointmentElement = this.radScheduler1.ElementTree.GetElementAtPoint(e.Location) as AppointmentElement;
if (appointmentElement!=null)
{
//TODO
}
}
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.