DayPilot.Action.queue

Adds the action to the notification queue.

Declaration

DayPilot.Action.queue();

Example

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

See Also