The eventResizeCallBack() method executes the server-side EventResize handler using an AJAX callback.
This only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
Declaration
DayPilot.Scheduler.eventResizeCallBack(e, newStart, newEnd, data)Parameters
e(DayPilot.Event) - object referencenewStart(DayPilot.Date) - updated startnewEnd(DayPilot.Date) - updated enddata(object) - additional custom data
Notes
Use this legacy helper to trigger the server-side EventResize pipeline from client-side code and send the updated time range and any custom data in the callback request.
Example
dp.eventResizeCallBack(e, newStart, newEnd, { reason: "resize" });See Also
Sending Custom Data with CallBack
DayPilot.Scheduler.eventResizeHandling
DayPilot