DayPilot.Scheduler.queue.add

The queue.add() method adds a DayPilot.Action object to the Scheduler notification queue.

This only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.

Declaration

DayPilot.Scheduler.queue.add(action);

Parameters

Notes

Use this method when you want to collect DayPilot.Action objects and submit them to the server later using DayPilot.Scheduler.queue.notify().

Example

const dp = new DayPilot.Scheduler("dp", {
  // ...
});
dp.init();

const action = /* DayPilot.Action */;
dp.queue.add(action);

See Also

DayPilot.Scheduler.queue.notify

DayPilot.Scheduler.queue.list

DayPilot.Action Class

DayPilot Scheduler Notify Event Model

DayPilot.Scheduler Class