DayPilot.Gantt.rowMoveHandling

The rowMoveHandling property (string) specifies the default action used for row moving in the JavaScript Gantt Chart.

Declaration

DayPilot.Gantt.rowMoveHandling

Possible Values

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

Default Value

"Update"

Examples

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"
  <!-- ... -->
/>

See Also

DayPilot.Gantt.onRowMove

DayPilot.Gantt.onRowMoved

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript