How to open the context menu when clicking on the Scheduler cell?

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.


Loader.
Up arrow icon