The eventResizePostBack() method invokes the server-side EventResize handler using a PostBack (ASP.NET WebForms only).
Declaration
DayPilot.Scheduler.eventResizePostBack(e, newStart, newEnd, data)Parameters
e(DayPilot.Event) - object referencenewStart(DayPilot.Date) - new event startnewEnd(DayPilot.Date) - new event enddata(object) - additional custom data
Notes
This is a legacy server-side helper for ASP.NET WebForms Scheduler integrations.
Use this method when DayPilot.Scheduler.eventResizeHandling is set to "PostBack". The optional data object lets you include custom values with the PostBack request.
Example
dp.eventResizePostBack(e, newStart, newEnd, { source: "custom-resize" });See Also
Event Resizing [doc.daypilot.org]
DayPilot