avoid the enter Appointment Window

When I LeftDblClick on Schedule How can I avoid the enter Appointment Window, then only show my owner window?
Thanks.

1 Reply

LS Lingaraj S Syncfusion Team November 27, 2009 09:37 AM UTC

Hi James,

Thank you for your interest in Syncfusion products.

Try using ScheduleAppointmentClick event in SchedulerControl to achieve your requirement as shown below.

this.scheduleControl1.ScheduleAppointmentClick += new ScheduleAppointmentClickEventHandler(scheduleControl1_ScheduleAppointmentClick);
private void scheduleControl1_ScheduleAppointmentClick(object sender, ScheduleAppointmentClickEventArgs e)
{
if (e.ClickType == ScheduleAppointmentClickType.LeftDblClick)
{
// Use your own appiontment
// It used to prevent the Defalu form
e.Cancel = true;
}

}


Please let me know if you have any queries.

Regards,
Lingaraj S.

Loader.
Up arrow icon