The rowEditHandling property (string) specifies the default submit action used for inline row editing in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.rowEditHandlingPossible Values
"Update"- updates the row header text using the supplied text."PostBack"- fires theRowEditevent on the server side (ASP.NET WebForms only)."CallBack"- fires theRowEditevent on the server side (ASP.NET WebForms, ASP.NET MVC, and Java only).
Default Value
"Update"Examples
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"
<!-- ... -->
/>See Also
Row Editing [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot