Adds the action to the notification queue.
DayPilot.Action.queue();
Change the text of an event with id '123' and add the action to the queue.
var e = dps.events.find('123');
e.text('New Event Name'); // update the event text
dps.events.update(e).queue();
// submit the queue
dps.queue.notify();