DayPilot.Scheduler.queue.notify

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.Scheduler.queue.notify();

Parameters

This method has no parameters.

Notes

Calling this method invokes the Notify event handler.

Use it after batching client-side notify actions that should be sent to the server together.

Example

const dp = new DayPilot.Scheduler("dp", {
  notifyCommit: "Queue",
  // ...
});
dp.init();

dp.queue.notify();

See Also

DayPilot.Scheduler.queue.clear()

DayPilot.Scheduler.notifyCommit

DayPilot Scheduler Notify Event Model

DayPilot.Scheduler Class