DayPilot.Calendar.queue.clear

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.Calendar.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 calendar = new DayPilot.Calendar("dp", {
  // ...
});
calendar.init();

calendar.queue.clear();

See Also

DayPilot.Calendar.queue.notify