shinyBS is no longer maintained and increasingly breaking with modern browsers - so we should switch to something else.
ChatGPT suggests https://rinterface.github.io/bs4Dash/ which looks v powerful but also like it would require a complete rewrite of the app - or to create custom javascript code like the following.
tags$script(
'$(document).ready(function(){
$("#myButton").popover({
title: "Popover title",
content: "Here is the popover content.",
trigger: "hover"
});
});'
)
),
actionButton("myButton", "Hover over me")
shinyBS is no longer maintained and increasingly breaking with modern browsers - so we should switch to something else.
ChatGPT suggests https://rinterface.github.io/bs4Dash/ which looks v powerful but also like it would require a complete rewrite of the app - or to create custom javascript code like the following.