The eventMoveCallBack() method executes the server-side EventMove handler using an AJAX callback (ASP.NET WebForms, ASP.NET MVC, Java).
Declaration
DayPilot.Month.eventMoveCallBack(e, newStart, newEnd, data);Parameters
e(DayPilot.Event) - object referencenewStart(DayPilot.Date) - new event startnewEnd(DayPilot.Date) - new event enddata(object) - custom data to be sent to the server-side event handler
Notes
Use this legacy helper to trigger the server-side EventMove handler from client-side code and send the updated start and end values in the callback request.
Use data to pass additional custom values to the server-side event handler.
Example
dp.eventMoveCallBack(e, newStart, newEnd, { reason: "reschedule" });See Also
DayPilot.Month.eventMoveHandling
DayPilot.Month.eventMoveNotify()
DayPilot