DayPilot.Action.notify

The notify() method submits the action to the server immediately.

It only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.

Declaration

DayPilot.Action.notify()

Parameters

This method has no parameters.

Notes

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.

Example

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();

See Also