The rowMoveHandling property (string) specifies the default action used for row moving in the JavaScript Gantt Chart.
Declaration
DayPilot.Gantt.rowMoveHandlingPossible Values
"Update"- enables row moving, fires the related events, and updates rows on drop."Disabled"- disables row moving and related events."PostBack"- fires theRowMoveevent on the server side (ASP.NET WebForms only)."CallBack"- fires theRowMoveevent on the server side (ASP.NET WebForms, ASP.NET MVC, Java only)."Notify"- fires theRowMoveevent 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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot