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.
DayPilot.Month.queue.add(action);action (DayPilot.Action) - object to add to the queue
Use this method when you want to collect DayPilot.Action objects and notify the server later.
const month = new DayPilot.Month("dp", {
// ...
});
month.init();
const action = /* DayPilot.Action */;
month.queue.add(action);