DayPilot.Queue.autoScroll

The autoScroll property (string) defines the auto-scroll mode for the Queue component. When enabled, the Queue automatically scrolls when the mouse reaches the top or bottom edge during drag-and-drop item moving.

Available since 2025.4.6727.

Declaration

DayPilot.Queue.autoScroll

Possible Values

  • "Disabled" - disables automatic scrolling during drag-and-drop item moving.

  • "Drag" - automatically scrolls when the mouse reaches the top or bottom edge of the Queue during drag-and-drop item moving.

Default Value

"Drag"

Examples

JavaScript

const queue = new DayPilot.Queue("dp", {
  autoScroll: "Drag",
  // ...
});
queue.init();

Angular

<daypilot-queue [config]="config"></daypilot-queue>
config: DayPilot.QueueConfig = {
  autoScroll: "Drag",
  // ...
};

React

<DayPilotQueue
  autoScroll="Drag"
  {/* ... */}
/>

Vue

<DayPilotQueue
  autoScroll="Drag"
  <!-- ... -->
/>

See Also

DayPilot.Queue Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript