The queue() method adds the action to the notification queue.
It only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
DayPilot.Action.queue()This method has no parameters.
Queued actions stay in the notification queue until you submit them, for example using DayPilot.Scheduler.queue.notify().
Change the text of an event with ID "123", add the action to the queue, and submit the queue afterwards.
const 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();