DayPilot.Scheduler.rowEditHandling

The rowEditHandling property (string) specifies the default submit action used for inline row editing in the JavaScript Scheduler component.

Declaration

DayPilot.Scheduler.rowEditHandling

Possible Values

  • "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).

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript