The notifyCommit property (string) sets the notify commit mode used in the ASP.NET WebForms, ASP.NET MVC, and Java editions.
DayPilot.Calendar.notifyCommit"Immediate" - submits the notification immediately.
"Queue" - stores the notification in the queue for later submission.
"Immediate"Queued notifications have to be sent manually using DayPilot.Calendar.queue.notify().
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"
<!-- ... -->
/>DayPilot.Calendar.queue.notify()
Notify Event Model [doc.daypilot.org]
Notify Queue [doc.daypilot.org]