Tooltips need associated JS libraries to work, according to the official documentation :
https://getbootstrap.com/docs/5.1/components/tooltips/
"Tooltips rely on the 3rd party library Popper for positioning. You must include popper.min.js before bootstrap.js or use bootstrap.bundle.min.js / bootstrap.bundle.js which contains Popper in order for tooltips to work!"
Are tooltips enabled in the BS5 template JS libraries?
I cannot get them to work using BS5 template 1.1.6 - when I include the popper.min.js in the before head of the template and activate with this
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
})
My page shows this error :
"ReferenceError: bootstrap is not defined"
Is there a way you recommend to activate tooltips in your BS5 template for T4 ?
D.