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