DayPilot.Scheduler.rowMoveFireOnForbiddenTarget

The rowMoveFireOnForbiddenTarget property (boolean) specifies whether onRowMove and onRowMoved are fired for a forbidden target position (args.position = "forbidden") during row moving using drag and drop.

Available since 2025.4.6661.

Declaration

DayPilot.Scheduler.rowMoveFireOnForbiddenTarget

Default Value

false

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  rowMoveFireOnForbiddenTarget: true,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  rowMoveFireOnForbiddenTarget: true,
  // ...
};

React

<DayPilotScheduler
  rowMoveFireOnForbiddenTarget={true}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rowMoveFireOnForbiddenTarget="true"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.onRowMove

DayPilot.Scheduler.onRowMoved

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript