DayPilot.Gantt.rowMoveHandling

Specifies the default RowMove action.

Options:

  • "Update" - row moving will be enabled, events will be fired, the rows will be updated on drop
  • "Disabled" - row moving will be disabled, no events will be fired
  • "PostBack" (ASP.NET WebForms)
  • "CallBack" (ASP.NET WebForms, ASP.NET MVC)
  • "Notify" (ASP.NET WebForms, ASP.NET MVC)

Example

<div id="dp"></div>

<script>
  var gantt = new DayPilot.Gantt("dp");
  gantt.rowMoveHandling = "Disabled";

  // ...

  gantt.init();
</script>