DayPilot.Calendar.notifyCommit

The notifyCommit property (string) sets the notify commit mode used in the ASP.NET WebForms, ASP.NET MVC, and Java editions.

Declaration

DayPilot.Calendar.notifyCommit

Possible Values

  • "Immediate" - submits the notification immediately.

  • "Queue" - stores the notification in the queue for later submission.

Default Value

"Immediate"

Notes

Queued notifications have to be sent manually using DayPilot.Calendar.queue.notify().

Examples

JavaScript

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

Angular

<daypilot-calendar [config]="config"></daypilot-calendar>
config: DayPilot.CalendarConfig = {
  notifyCommit: "Queue",
  // ...
};

React

<DayPilotCalendar
  notifyCommit="Queue"
  {/* ... */}
/>

Vue

<DayPilotCalendar
  notifyCommit="Queue"
  <!-- ... -->
/>

See Also

DayPilot.Calendar.queue.notify()

DayPilot.Action.auto()

Notify Event Model [doc.daypilot.org]

Notify Queue [doc.daypilot.org]

DayPilot.Calendar Class