DayPilot.Calendar.queue.add

The queue.add() method adds a DayPilot.Action object to the queue of actions that will be notified to the server.

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

Declaration

DayPilot.Calendar.queue.add(action);

Parameters

Notes

Use this method when you want to collect DayPilot.Action objects and submit them to the server later.

Example

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

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

See Also

DayPilot.Action Class