- Posts: 21
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Since you mention the plugins shipped with Bootstrap is LimeSurvey offering only a selection?LouisGac wrote: new themes use Bootstrap, so:
getbootstrap.com/javascript/#tooltips
For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself.
One way to initialize all popovers on a page would be to select them by their data-bs-toggle attribute:Code:$(function () { $('[data-bs-toggle="popover"]').popover() })
Thanks for pointing that out.I didn't initialized anything and still got Tooltip working. So it seems already initialized somewhere in the code (at least at demo.limesurvey.org).LouisGac wrote: For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself.