The rowDragHandleVisibility property (string) sets the visibility of the row moving handle in the JavaScript Scheduler.
Available since 2025.4.6665.
DayPilot.Scheduler.rowDragHandleVisibility"Hover" - shows the handle when the pointer hovers over the row header.
"Visible" - keeps the handle always visible.
"TouchVisible" - behaves as "Hover" on desktop devices and as "Visible" on touch devices.
"Hover"JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowDragHandleVisibility: "TouchVisible",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowDragHandleVisibility: "TouchVisible",
// ...
};React
<DayPilotScheduler
rowDragHandleVisibility="TouchVisible"
{/* ... */}
/>Vue
<DayPilotScheduler
rowDragHandleVisibility="TouchVisible"
<!-- ... -->
/>Row Moving [doc.daypilot.org]