DayPilot.Month.events.update(e, data);
The e object has to be acquired using find() or findRecurrent() methods.
DayPilot.Action object that stores the action details.
Change the text of an event with id '123' and save the action in the queue.
var e = dpc.events.find('123'); e.text('New Event Name'); // update the event text dpm.events.update(e).queue();
Change the text of an event with id '123' and send the action to the server immediately.
var e = dpc.events.find('123'); e.text('New Event Name'); // update the event text dpm.events.update(e).notify();