The rowMoveHandling property (string) specifies the default action used for row moving in the JavaScript Scheduler.
Declaration
DayPilot.Scheduler.rowMoveHandlingPossible Values
"Disabled"- disables row moving. This is the default value."Update"- updates the row position on the client side."CallBack"- firesRowMoveon the server side using a callback (ASP.NET WebForms, ASP.NET MVC, and Java versions only)."PostBack"- firesRowMoveon the server side using a PostBack (ASP.NET WebForms only)."Notify"- updates the position on the client side and firesRowMoveon the server side using a callback (ASP.NET WebForms, ASP.NET MVC, and Java versions only).
Default Value
"Disabled"Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowMoveHandling: "Update",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowMoveHandling: "Update",
// ...
};React
<DayPilotScheduler
rowMoveHandling="Update"
{/* ... */}
/>Vue
<DayPilotScheduler
rowMoveHandling="Update"
<!-- ... -->
/>See Also
DayPilot.Scheduler.onRowMoving
DayPilot.Scheduler.rowMoveSameLevelOnly
Row Moving [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot