I need to Hide or Remove 'New Recurring Appointment' option from RadScheduler. Can you show me an example of how to do this in VB?
Thanks and best regards,
Dominic
1 Answer, 1 is accepted
0
Accepted
Dinko | Tech Support Engineer
Telerik team
answered on 08 Nov 2021, 11:08 AM
Hi Dominic,
Thank you for the provided image.
You can hide the "New Recurring Appointment" item from the context menu by subscribing to the ContextMenuOpening event and using the following code snippet:
For i AsInteger = 0To e.ContextMenu.Items.Count - 1If e.ContextMenu.Items(i).Text = "New Recurring Appointment"Then
e.ContextMenu.Items(i).Visibility = Telerik.WinControls.ElementVisibility.Collapsed
EndIfNext