The eventSelectPostBack() method executes the server-side EventSelect handler using a PostBack (ASP.NET only).
DayPilot.Calendar.eventSelectPostBack(e, data)e (DayPilot.Event) - reference to the calendar event
data (object) - custom data to be sent to the server-side event handler
Use this method when you need to trigger the server-side EventSelect handler using a PostBack and attach additional custom data to the request.
const e = calendar.events.find("123");
calendar.eventSelectPostBack(e, { source: "manual" });