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.
DayPilot.Queue.autoScroll"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.
"Drag"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"
<!-- ... -->
/>