Change double click event

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;

        }

    }



1 Reply 1 reply marked as answer

SR Swathi Ravi Syncfusion Team January 25, 2023 06:47 AM UTC

Hi Francisco,


You can achieve your requirement using the Schedule's OnEventDoubleClick event, you can open the quick info when an event is double-clicked. Refer to the below shared UG.


UG: https://blazor.syncfusion.com/documentation/scheduler/events#oneventdoubleclick

Api: https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Schedule.ScheduleEvents-1.html#Syncfusion_Blazor_Schedule_ScheduleEvents_1_OnEventDoubleClick


Regards,

Swathi Ravi


Marked as answer
Loader.
Up arrow icon