Hi Abdelhamid,
Thanks for your interest in Syncfusion products.
Based on the provided information, we suspect that your requirement is to
hide the Context Menu when click on the ScheduleAppointment, for that we have
provide a code snippet below,
Code Snippet
[C#]
/////////
this.Schedule.ContextMenuOpening +=
Schedule_ContextMenuOpening;
////////
void Schedule_ContextMenuOpening(object sender, ContextMenuOpeningEventArgs e)
{
if
(e.Appointment != null)
{
e.Cancel = true;
}
}
|
If the provided solution doesn't meet your requirement, please revert us back with more information, so that we
could analyse on it and provide you better solution.
Regards,
Joy Oyiess Rex K