Hi Nate,
Thanks for contacting Syncfusion Support.
Please find the response to your queries below.
Query: “Can I toggle tooltips being displayed on the page?”
Yes, you can toggle the display of tooltips using enable and disable public methods. Please refer to the below code snippet:
<code>
function showhide(args) {
(args.isChecked) ? $(".e-tooltip").ejTooltip("disable") : $(".e-tooltip").ejTooltip("enable");
}
</code> |
Query: “Is this how it is supposed to behave or is there a way I can automatically close the tooltip when the modal is opened?”
Before the modal is opened, you can close the tooltip using hide public method. Refer to the code snippet:
<code>
function btnclick(args) {
$(".e-tooltip").ejTooltip("hide");
}
</code> |
Regards,
Karthikeyan V.