The eventDoubleClickCallBack() method executes the server-side EventDoubleClick handler using an AJAX callback (ASP.NET WebForms, ASP.NET MVC, Java).
Declaration
DayPilot.Month.eventDoubleClickCallBack(e, data)Parameters
e(DayPilot.Event) - object referencedata(object) - custom data to be sent to the server-side event handler
Notes
Use this legacy helper to invoke the server-side EventDoubleClick handler from client-side code when DayPilot.Month.eventDoubleClickHandling uses server-side processing.
The data object lets you include additional values with the callback request.
Example
dp.eventDoubleClickCallBack(e, { source: "custom-button" });See Also
DayPilot.Month.eventDoubleClickHandling
DayPilot.Month.onEventDoubleClick
DayPilot