Hi!
I'd like to change the action that happens when a user double clicks an event inside the scheduler.
I want to open the quickinfo instead of edit. How's that possible?
I have tried something like this:
private void OnPopupOpen(PopupOpenEventArgs<SchedulerData> args)
{
if (args.Type == PopupType.Editor)
{
args.Type = PopupType.QuickInfo;
}
}