Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tooltips does not show up with shinyDashboard boxes sidebar #140

Open
fsalemi opened this issue Feb 24, 2022 · 0 comments
Open

Tooltips does not show up with shinyDashboard boxes sidebar #140

fsalemi opened this issue Feb 24, 2022 · 0 comments

Comments

@fsalemi
Copy link

fsalemi commented Feb 24, 2022

I have a simple app with shinyDashbaord. I was hoping to show a tooltip for sidebar icon. But it just shows "More" instead of the actual tooltip. Here is a simple code:

# Toggle a box sidebar
library(shiny)
library(bs4Dash)
library(shinyBS)

shinyApp(
  ui = dashboardPage(
    header = dashboardHeader(),
    body = dashboardBody(
      box(
        height = "500px",
        width = 12,
        maximizable = T,
        solidHeader = FALSE,
        collapsible = TRUE,
        sidebar = boxSidebar(
          id = "mycardsidebar",
          width = 30,
          p("Sidebar Content")
        )
      ),
      bsTooltip("mycardsidebar", title = "Sidebar"),
      
    ),
    sidebar = dashboardSidebar()
  ),
  server = function(input, output, session) {}
)

Any help would be highly appreciated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant