The eventBubbleShowForMargins property (boolean) determines whether the bubble is activated when the user hovers the drag handle margins used for moving or resizing inside an event in the JavaScript Scheduler.
Available since 2024.4.6313.
DayPilot.Scheduler.eventBubbleShowForMarginsfalseThe affected hover areas are controlled by the eventMoveMargin and eventResizeMargin properties.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventBubbleShowForMargins: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventBubbleShowForMargins: true,
// ...
};React
<DayPilotScheduler
eventBubbleShowForMargins={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventBubbleShowForMargins="true"
<!-- ... -->
/>Event Moving [doc.daypilot.org]
Event Resizing [doc.daypilot.org]
DayPilot.Scheduler.eventMoveMargin