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.autoScrollPossible 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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot