The showToolTip property (boolean) controls whether the browser tooltip based on the HTML title attribute is shown for Scheduler events.
Declaration
DayPilot.Scheduler.showToolTipDefault Value
trueNotes
This tooltip uses the standard HTML
titleattribute.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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot