DayPilot.Scheduler.showToolTip

The showToolTip property (boolean) controls whether the browser tooltip based on the HTML title attribute is shown for Scheduler events.

Declaration

DayPilot.Scheduler.showToolTip

Default Value

true

Notes

  • This tooltip uses the standard HTML title attribute.

  • It is recommended to disable this property when DayPilot.Scheduler.bubble is active.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  showToolTip: false,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  showToolTip: false,
  // ...
};

React

<DayPilotScheduler
  showToolTip={false}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :showToolTip="false"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.bubble

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript