The rowEditHandling property (string) specifies the default submit action used for inline row editing in the JavaScript Scheduler component.
DayPilot.Scheduler.rowEditHandling"Update" - updates the row header text using the supplied text.
"PostBack" - fires the RowEdit event on the server side (ASP.NET WebForms only).
"CallBack" - fires the RowEdit event on the server side (ASP.NET WebForms, ASP.NET MVC, and Java only).
"Update"JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowEditHandling: "CallBack",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowEditHandling: "CallBack",
// ...
};React
<DayPilotScheduler
rowEditHandling="CallBack"
{/* ... */}
/>Vue
<DayPilotScheduler
rowEditHandling="CallBack"
<!-- ... -->
/>Row Editing [doc.daypilot.org]