The eventDoubleClickPostBack() method executes the server-side EventDoubleClick handler using a PostBack (ASP.NET WebForms only).
Declaration
DayPilot.Month.eventDoubleClickPostBack(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 when DayPilot.Month.eventDoubleClickHandling is set to PostBack.
The data object lets you send additional values with the request.
Example
dp.eventDoubleClickPostBack(e, { source: "custom-button" });See Also
DayPilot.Month.eventDoubleClickHandling
DayPilot.Month.onEventDoubleClick
DayPilot