Questions tagged [bs4dash]

60 questions
0
votes
0 answers

Layout of sidebar tabs and skin for bs4dash/shinydashboard

I am working on the UI of a Shiny app ... and it looks super ugly. I am running into three problems: I am trying to use skin = 'light' in certain parts to experiment with the colours (starting off with the sidebar!). When I use this, it doesn't…
Dieu94
  • 371
  • 1
  • 11
0
votes
1 answer

Running bs4Dash shiny example - unused argument

I am running the following snippet of code from the bs4Dash documentation: library(bs4Dash) shiny::shinyApp( ui = bs4DashPage( navbar = bs4DashNavbar(), sidebar = bs4DashSidebar(), controlbar = bs4DashControlbar(), footer =…
Dieu94
  • 371
  • 1
  • 11
0
votes
0 answers

sidebarMenu from bs4Dash does not respond to shinybookmarks

I have developed a rshiny dashboard. For the layout, I utilized the bs4Dash package, which includes a sidebar menu. The (simplified) dashboard consists of two tab items. Within the second tab item, I have added a bookmark button and a radio…
0
votes
2 answers

Small, unwanted tab at the top of bs4Dash tabCard in Shiny

Problem: I'm working on a Shiny app using the bs4Dash package, and I have a tabCard containing nested tabsetPanels. However, there is a small tab at the top of the 'tabCard' that I'd like to remove, as it provides unwanted functionality and is a…
JJ Fantini
  • 213
  • 1
  • 11
0
votes
1 answer

bs4Dash using moduleServer()

I have an issue with using modules with bs4Dash. I have created a ShinyApp with modules using golem which I created from my previous ShinyApp. I have no issue in using input$dark_mode == TRUE or if (input$dark_mode) if it is a single app, for…
0
votes
1 answer

How to prevent a popover to stay when changing tabs in shiny app?

I have a shiny app with popovers that contain useful information on interpretation of plot output. However, i have to close the popover "manually" everytime. Otherwise the popover of tab "dash1" will stay even if i switch to tab…
Philipp Schulz
  • 131
  • 1
  • 8
0
votes
2 answers

Add popover or info botton to accordionItem title panel in shiny

I have a shiny app with accordion and I would like to add a popup message on the title panel either an info botton or a hovering function ! I have tried the popover from bs4Dash but it does not work on accordionItem …
Haribo
  • 2,071
  • 17
  • 37
0
votes
1 answer

web scraping infogol.net attributerror with beautiful soup

I am trying to scrape the information for ajax matches from infogol. When I inspect the webpage I find that the table class = 'teamstats-summary-matches ng-scope' but whenI try this i find nothing. So far I have come up with the following…
Coderman
  • 159
  • 9
0
votes
2 answers

Shiny selectInput/pickerInput with long names should overflow sidebar

I want to built a shiny app with bs4Dash in sidebar layout. The sidebar contains a dropdown selection menu with items that have long names. Once I open the dropdown, I would like the full item name to be visible, i.e. overflowing the dashboard's…
0
votes
1 answer

Change the color of left and right sidebar in shinydashboardPlus when using bs4Dash package

In my shinydashboard below Im tryin to change the color of my sidebar and my controlbar to grey but it seems not to work when I combine bs4Dash package. Also my controlBar does not open, ## app.R…
firmo23
  • 7,490
  • 2
  • 38
  • 114
0
votes
1 answer

Accessing the sidebar state using bs4Dash

Using {shinydashboard}, we can access the state of the sidebar (collapsed or not) with input$sidebarCollapsed : library(shiny) library(shinydashboard) ui <- dashboardPage( dashboardHeader(), dashboardSidebar(), dashboardBody( …
0
votes
0 answers

Bs4dash package affecting custom icon

I have a custom code that adds a home icon to the navbar. Whenever I introduce the BS4DASH package a dot appears alongside the icon. Any solutions that one may have so that the dot doesnt appear. tags$li(a(onclick = "openTab('home')", …
0
votes
1 answer

is there something i'm missing in displaying plotOutput() (bs4Dash)

library(shiny) library(gapminder) library(bbplot) library(tidyverse) library(bs4Dash) year_range <- range(gapminder[["year"]]) ui <- dashboardPage( header = dashboardHeader( title = dashboardBrand( title = "LE", color =…
0
votes
1 answer

How to add tooltip to box header items in shinyDashbord

I have a simple shinyDashbord app with a box that has a sidebar in it. I would like to add tooltip to the sidebar icon in the box header so that when I hover the mouse over the icon, the tooltip shows up. Is that possible? # Toggle a box…
Farhad
  • 151
  • 7
0
votes
2 answers

when converting bs4 scrape data as excel only one last data coming as output

when converting bs4 scrape data as excel only one last data coming as output If it is a guidance code or explanation with code and hashtags also fine. link of the website import requests import pandas as pd headers = {'Authorization' :…