The queue() method adds the action to the notification queue.
It only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
Declaration
DayPilot.Action.queue()Parameters
This method has no parameters.
Notes
Queued actions stay in the notification queue until you submit them, for example using DayPilot.Scheduler.queue.notify().
Example
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();
DayPilot