DayPilot.Calendar.eventDoubleClickPostBack

The eventDoubleClickPostBack() method executes the server-side EventDoubleClick handler using a PostBack (ASP.NET WebForms only).

Declaration

DayPilot.Calendar.eventDoubleClickPostBack(e, data)

Parameters

  • e (DayPilot.Event) - object reference

  • data (object) - custom data to be sent to the server-side event handler

Notes

This is a legacy server-side API used when event double clicks are handled using PostBack.

In client-side JavaScript Calendar integrations, configure DayPilot.Calendar.eventDoubleClickHandling and handle DayPilot.Calendar.onEventDoubleClick or DayPilot.Calendar.onEventDoubleClicked instead.

Example

dp.eventDoubleClickPostBack(e, { source: "custom-button" });

See Also

DayPilot.Calendar.eventDoubleClickHandling

DayPilot.Calendar.onEventDoubleClick

DayPilot.Calendar.onEventDoubleClicked

DayPilot.Calendar Class