The eventResizePostBack() method executes the server-side EventResize handler using a PostBack (ASP.NET).
Declaration
DayPilot.Calendar.eventResizePostBack(e, newStart, newEnd, data)Parameters
e(DayPilot.Event) - target event objectnewStart(DayPilot.Date) - new event startnewEnd(DayPilot.Date) - new event endnewResource(string) - new resource iddata(object) - custom data to be sent to the server-side event handler
Notes
Use this legacy helper to trigger the server-side resize pipeline from client-side code and pass the updated time range, resource information, and any custom data with the PostBack request.
Example
dp.eventResizePostBack(e, newStart, newEnd, data);
DayPilot