The rowMoveHandling property (string) specifies the default action used for row moving in the JavaScript Scheduler.
DayPilot.Scheduler.rowMoveHandling"Disabled" - disables row moving. This is the default value.
"Update" - updates the row position on the client side.
"CallBack" - fires RowMove on the server side using a callback (ASP.NET WebForms, ASP.NET MVC, and Java versions only).
"PostBack" - fires RowMove on the server side using a PostBack (ASP.NET WebForms only).
"Notify" - updates the position on the client side and fires RowMove on the server side using a callback (ASP.NET WebForms, ASP.NET MVC, and Java versions only).
"Disabled"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"
<!-- ... -->
/>DayPilot.Scheduler.onRowMoving
DayPilot.Scheduler.rowMoveSameLevelOnly
Row Moving [doc.daypilot.org]