DayPilot.Month.notifyCommit

The notifyCommit property (string) sets the notify commit mode used by DayPilot.Month integrations for ASP.NET WebForms, ASP.NET MVC, and Java.

Declaration

DayPilot.Month.notifyCommit

Possible Values

  • "Immediate" - submits the notification immediately.

  • "Queue" - saves the notification to the queue.

Default Value

"Immediate"

Notes

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

Examples

JavaScript

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

Angular

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

React

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

Vue

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

See Also

DayPilot.Month.queue.notify

DayPilot.Action.auto()

DayPilot.Month Class