Questions tagged [bs4dash]
60 questions
1
vote
1 answer
How to customize bs4dash tooltip in shiny app?
I want to customize the tooltip in the following shiny app:
library(shiny)
library(bs4Dash)
ui <- fluidPage(
tooltip(
actionButton("goButton", "Hier klicken!"),
title = "This is a ridiculous blablabla example text
even more…

Philipp Schulz
- 131
- 1
- 8
1
vote
1 answer
Add a logo in shinydashboard header while using bs4Dash package
Adding a logo in dashboard header does not work with bs4Dash library. Any suggestions?
# app.R ##
library(shiny)
library(shinydashboard)
library(bs4Dash)
library(shinydashboardPlus)
ui <- dashboardPage(
dashboardHeader(# removed some lines
…

firmo23
- 7,490
- 2
- 38
- 114
1
vote
1 answer
Text is not displayed in shiny dashboard header after combining with library bs4Dash
Im trying to include some text inside shiny dashboard header. While this works when I combine it with library bs4Dash the text is not displayed any more.
library(shiny)
library(shinydashboard)
library(bs4Dash)
ui <- dashboardPage(
…

firmo23
- 7,490
- 2
- 38
- 114
1
vote
2 answers
How to Update a Shiny bs4Dash descriptionBlock server side
Can I have some guidance please in how to update the descriptionBlock in a shiny app with a bs4Dash dashboard? Thanks in advance.
I have tried multiple approaches but can’t seem to get the descriptionBlock values to change on the server and send to…

CallumH
- 751
- 1
- 7
- 22
1
vote
1 answer
How to Edit the Font Color of a bs4Dash bs4ProgressBar
I have an R Shiny bs4Dash bs4ProgressBar running in an app. I can edit the background colours with the status argument, but I can’t find a way to edit the font colour, and in the real app there is often no contrast when the background is white. How…

CallumH
- 751
- 1
- 7
- 22
1
vote
2 answers
How to completely collapse sidebar in bs4Dash
I need to fully (not partially) collapse the main sidebar (left) in my app with toggle button. I noticed there is an argument: sidebar_fullCollapse in shinydashboardPlus, that if set to TRUE will collapse the sidebar completely. However, we do not…

Farhad
- 151
- 7
1
vote
1 answer
Not able to change the background color of the bs4Dash::dashboardSidebar() properly
1. Color issue using only the bs4Dash package
I am starting to use the package bs4Dash and I am facing a problem with the background color of the left sidebar bs4Dash::dashboardSidebar(). I observe that when I start the app the background color of…

retlaw
- 39
- 2
- 8
1
vote
1 answer
HTTP 403 forbidden is showing while scraping a data from a website using python and bs4
when 403 forbidden error is showing while scrapping a data then how to proceed further and scrape a data from a website
how to scrape a data please guide me i am a beginner for web scrapping
import requests, bs4
from bs4 import BeautifulSoup
from…

Rabiyulfahim
- 77
- 8
1
vote
1 answer
Connect rangeslider R Shiny to plotly plot
So a plotly plot has an embedded rangeslider however I do not like the looks of it. The rangeslider in R Shiny looks much better and professional, however how do i connect the two?
Lets say you have a dataframe with some values and a daterange…

H. berg
- 471
- 1
- 3
- 11
1
vote
1 answer
How to Disable Shiny bs4Dash Dashboard controlbar (Right Sidebar)
What is the parameter to control the right side bar on a Shiny bs4Dash dashboard. My reading of the dashboardControlbar function at https://rinterface.github.io/bs4Dash/articles/step-by-step.html, which I understand to be the sidebar to the right of…

CallumH
- 751
- 1
- 7
- 22
1
vote
0 answers
How to make Shiny bs4Dash boxes sortable
I have coded a small modularised shiny app with sortable boxes from bs4Dash, however, I can’t get the boxes to drag (sortable), as they do on the online demo at https://dgranjon.shinyapps.io/bs4DashDemo/. I am of the opinion that I have a namespace…

CallumH
- 751
- 1
- 7
- 22
1
vote
1 answer
Update Controlbar in bs4dash version 2.00 Shiny
I have moved over to the new bs4dash and I am having some issues with updating the control bar.
For each different tab on my sidebar i would like a corresponding control bar. For example, if the sidebar tab is "Home", I would like to the controlbar…

Jordan Wrong
- 1,205
- 1
- 12
- 32
1
vote
1 answer
How can I reactively update the active menuItem in a Shiny app using `renderUI`?
I am building a shiny app that dynamically creates reactive bs4Box elements from a data frame. I want to make those boxes clickable by the user so that automatic redirection to a different menuItem occurs. I have read and followed similar previous…

AJMA
- 1,134
- 2
- 13
- 28
1
vote
1 answer
Create a column within a Bs4card in Shiny
I have a bs4card where i would like to add 2 selectize inputs side by side. As you can see from the attached photo, the selectize inputs are squished even with the width of the columns set to 6.
Below is my code...
bs4Card(
width =6,
…

Jordan Wrong
- 1,205
- 1
- 12
- 32
1
vote
1 answer
Shiny output elements not displaying in bs4Dash with nested modules
EDIT: The author of the bs4Dash package, David Granjon, recently provided an answer to the question asked in the Github issue referenced below and closed it.
My question is very likely related to this issue in bs4Dash github repo, but no answer was…

SavedByJESUS
- 3,262
- 4
- 32
- 47