DayPilot.Scheduler.eventBubbleShowForMargins

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.

Declaration

DayPilot.Scheduler.eventBubbleShowForMargins

Default Value

false

Notes

The affected hover areas are controlled by the eventMoveMargin and eventResizeMargin properties.

Examples

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"
  <!-- ... -->
/>

See Also

Event Moving [doc.daypilot.org]

Event Resizing [doc.daypilot.org]

DayPilot.Scheduler.eventMoveMargin

DayPilot.Scheduler.eventResizeMargin

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript