The rowMoveHandling property (string) specifies the default action used for row moving in the JavaScript Gantt Chart.
DayPilot.Gantt.rowMoveHandling"Update" - enables row moving, fires the related events, and updates rows on drop.
"Disabled" - disables row moving and related events.
"PostBack" - fires the RowMove event on the server side (ASP.NET WebForms only).
"CallBack"- fires the RowMove event on the server side (ASP.NET WebForms, ASP.NET MVC, Java only).
"Notify" - fires the RowMove event on the server side (ASP.NET WebForms, ASP.NET MVC, Java only).
"Update"JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowMoveHandling: "Disabled",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowMoveHandling: "Disabled",
// ...
};React
<DayPilotGantt
rowMoveHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotGantt
rowMoveHandling="Disabled"
<!-- ... -->
/>