DayPilot.Action.notify

Submits the action to the server immediately.

Declaration

DayPilot.Action.notify();

Example

Change the text of an event with id '123' and send it to the server.

var e = dps.events.find('123');
e.text('New Event Name');  // update the event text
dps.events.update(e).notify();

See Also