The eventMovePostBack() method executes the server-side EventMove handler using a PostBack (ASP.NET WebForms only).
Declaration
DayPilot.Scheduler.eventMovePostBack(e, newStart, newEnd, newResource, data)Parameters
e(DayPilot.Event) - object referencenewStart(DayPilot.Date) - updated startnewEnd(DayPilot.Date) - updated endnewResource(string) - updated resource iddata(object) - additional custom data
Notes
Use this legacy helper to trigger the server-side EventMove pipeline from client-side code and send the updated start, end, resource, and any custom data using a PostBack request.
Example
dp.eventMovePostBack(e, newStart, newEnd, newResource, { reason: "reschedule" });See Also
Scheduler Event Moving [doc.daypilot.org]
DayPilot.Scheduler.eventMoveHandling
DayPilot