The notifyCommit property (string) sets the notify commit mode used by DayPilot.Month integrations for ASP.NET WebForms, ASP.NET MVC, and Java.
DayPilot.Month.notifyCommit"Immediate" - submits the notification immediately.
"Queue" - saves the notification to the queue.
"Immediate"Queued notifications have to be sent manually using DayPilot.Month.queue.notify().
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"
<!-- ... -->
/>