The rowDragHandleVisibility property (string) sets the visibility of the row moving handle in the JavaScript Scheduler.
Available since 2025.4.6665.
Declaration
DayPilot.Scheduler.rowDragHandleVisibilityPossible Values
"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.
Default Value
"Hover"Examples
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"
<!-- ... -->
/>See Also
Row Moving [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot