Define by Settings or via API Calls custom context Menu for any Cell, like change current by Event BeforeContextMenu(ref ContextMenuElement)
Try:
var cellContextMenu = spreadsheet.cellContextMenu();
cellContextMenu.bind('open', function (e) {
this.remove('[data-action="cut"]');
this.remove('[data-action="copy"]');
this.remove('[data-action="paste"]');
this.remove('[data-action="merge"]');
});
see: https://docs.telerik.com/kendo-ui/api/javascript/ui/menu/methods/remove
The feature is there, but not documented properly - you can grab the instance of the context menu through here and customize it: http://docs.telerik.com/kendo-ui/api/javascript/ui/spreadsheet#methods-cellContextMenu
Any progress made toward this?
Yes; this sounds useful! We need more spreadsheet events exposed!
It should not only exist for single cells but also for cell ranges.