The eventMovePostBack() method executes the server-side EventMove handler using a PostBack (ASP.NET WebForms).
DayPilot.Month.eventMovePostBack(e, newStart, newEnd[, data]);e (DayPilot.Event) - object reference
newStart (DayPilot.Date) - new event start
newEnd (DayPilot.Date) - new event end
data (object) - custom data to be sent to the server-side event handler
Use this legacy helper to trigger the server-side EventMove handler from client-side code and send the updated start and end values using PostBack.
Use data to pass additional custom values to the server-side event handler.
dp.eventMovePostBack(e, newStart, newEnd, { reason: "reschedule" });DayPilot.Month.eventMoveHandling
DayPilot.Month.eventMoveCallBack()