This is a migrated thread and some comments may be shown as answers.

is there any option to enable the click event for the Rad Scheduler Appointment Items?

2 Answers 126 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Dev
Top achievements
Rank 1
Veteran
Dev asked on 02 Sep 2019, 11:33 AM

Hi

  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

Sort by
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:

        private void radScheduler1_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.
0
Dev
Top achievements
Rank 1
Veteran
answered on 04 Sep 2019, 10:48 AM

Hi Dess, 

         It's working fine. Thank you so much for your timely help.

Tags
Scheduler and Reminder
Asked by
Dev
Top achievements
Rank 1
Veteran
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Dev
Top achievements
Rank 1
Veteran
Share this question
or