The queue.clear() method clears the queue of notify actions.
This only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
Declaration
DayPilot.Month.queue.clear();Parameters
This method has no parameters.
Notes
Use this method to discard queued notify actions instead of submitting them to the server.
Example
const month = new DayPilot.Month("dp", {
// ...
});
month.init();
month.queue.clear();
DayPilot