The taskMovingStartEndEnabled property (boolean) activates target date/time indicators in the JavaScript Gantt Chart while task boxes are being moved using drag and drop.
Declaration
DayPilot.Gantt.taskMovingStartEndEnabledPossible Values
true- displays target start and end indicators while moving tasks.false- hides target start and end indicators while moving tasks.
Default Value
falseExamples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
taskMovingStartEndEnabled: true,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
taskMovingStartEndEnabled: true,
// ...
};React
<DayPilotGantt
taskMovingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotGantt
:taskMovingStartEndEnabled="true"
<!-- ... -->
/>See Also
DayPilot.Gantt.taskMovingStartEndFormat
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot