The queue.notify() method submits the notification queue to the server.
This only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
Declaration
DayPilot.Calendar.queue.notify();Parameters
This method has no parameters.
Notes
Calling this method invokes the Notify event handler.
Example
const calendar = new DayPilot.Calendar("dp", {
// ...
});
calendar.init();
calendar.queue.notify();
DayPilot