Hi
I'm trying to use some features (free trial for now) and I would like to know if is possible disable this property "showOnHover" and the same time enable click on each event and display the tooltip.
I'm using the Scheduler 2.2.5.
Thanks
F.B
Support Forum
Hi!
Yes. This is exact you need.
Your code to reuse existing eventTooltip should be like this one.
This will disable tooltip only but not the whole feature.
Yes. This is exact you need.
Your code to reuse existing eventTooltip should be like this one.
This will disable tooltip only but not the whole feature.
let scheduler = new Scheduler({
...
listeners : {
eventClick : ({ eventElement }) => {
const tooltip = scheduler.features.eventTooltip.tooltip;
tooltip.activeTarget = eventElement;
tooltip.showBy(eventElement);
}
}
});
scheduler.features.eventTooltip.tooltip.disabled = true;