Answer:
We can open the context menu when click on the Scheduler cell using OnCellClick event.
public void OnCellClick(CellClickEventArgs args)
{
args.Cancel
= true;
CellData = args;
ContextMenuObj.Open(args.MouseEventArgs.ClientX,
args.MouseEventArgs.ClientY);
} |
Find
the sample for to Open the context menu when clicking in the cell
in scheduler from here.