Hello,
I have this code:
Grid.ContextMenuSettings = new Syncfusion.JavaScript.Models.ContextSettings();
Grid.ContextMenuSettings.EnableContextMenu = true;
Grid.ContextMenuSettings.ContextMenuItems = new List<string>();
Grid.ContextMenuSettings.CustomContextMenuItem.Add('Custom item');
But the ContextMenu shows the default items and custom items, and I want only the custom items, how to do this?
Thanks!