The notify() method submits the action to the server immediately.
It only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
DayPilot.Action.notify()This method has no parameters.
Call this method on the DayPilot.Action object returned by an operation such as DayPilot.Scheduler.events.update() when the change should be sent to the server right away.
Change the text of an event with ID "123" and send it to the server.
const e = dps.events.find("123");
e.text("New Event Name"); // update the event text
dps.events.update(e).notify();