Questions tagged [shinydashboardplus]

44 questions
1
vote
1 answer

Change text in boxSidebar tooltip

I am using boxSidebar for my non-english shiny app, and would really like to replace the 'More' text that appears on hovering over the icon. Can anyone help me with a solution for this? Alternatively, I was thinking to remove it by using…
Chili
  • 45
  • 6
1
vote
0 answers

Add dependencies of shinydashboardplus in shiny

Below is the code for shiny app that I am using. shiny::shinyApp(fluidPage( # Give the page a title titlePanel("Telephones by region"), # Generate a row with a sidebar sidebarLayout( # Define the sidebar with one…
Williams86
  • 320
  • 1
  • 11
1
vote
1 answer

Create a reactive variable depending on active Tab on R Shiny

I have this simple app and I would like to be able to "catch" the active tab. For example, if I'm on "tab1", my selectInput at the top would be c("a","b","c") but it would change if I am on the other tab I want to create a variable active_tab that…
K.Hua
  • 769
  • 4
  • 20
1
vote
1 answer

How do I update userMessages in R shiny which were inserted via renderUI and uiOutput?

When I insert a userMessages-UI via renderUI and uiOutput into a shinydashboard then updateUserMessages doesn't update the messages. library(shiny) library(shinydashboard) library(shinydashboardPlus) ui <- fluidPage( dashboardPage( …
Luca_brasi
  • 89
  • 7
1
vote
1 answer

Applying different CSS styles to box elements in R Shiny

I have an app in which I would like the main_box expand/contract icon to be in black text with a white background, and then the sub_box's options box to appear in red with white letters. Additionally, I want the sub_box's options box to remain red…
DJC
  • 1,491
  • 6
  • 19
1
vote
1 answer

Forcing updates to htmlOutput within a long running function

I have a Shiny application that runs a long process and I would like to alert the user that the process is actually running. In the example below, I have a toggle switch that executes a block of code with a 1 second delay (my actual application…
KirkD-CO
  • 1,603
  • 1
  • 22
  • 35
1
vote
1 answer

Display controlbarMenu() in right sidebar of shiny dashboard based on tab selection

I have the shiny app below with 3 different tabs, a sidebar and a right sidebar. I would like every time that I move to another tab the content of the right sidebar to change and display different widgets. In the third though named "Tax Loss…
firmo23
  • 7,490
  • 2
  • 38
  • 114
0
votes
0 answers

Sidebar always minified

I know that shinydashboardPlus allows me to minified the sidebar like the example: siderbar <- dashboardSidebar(width = 50, collapsed = TRUE, sidebarMenu( id = 'sidebar', # Tab1 menuItem("Tab number One", tabName = 'tab1', …
0
votes
2 answers

Hyperlink that switches to a "hidden" tab in shinydashboard

I want a hyperlink to work in practical terms just as a tab button would. This is my code so far (it has two normal tabs and a "hyperlink tab"): library(shiny) library(shinydashboard) ui <- dashboardPage( dashboardHeader(), dashboardSidebar( …
Ekapunk
  • 53
  • 5
0
votes
0 answers

Show SweetAlert warning message when validate() is not met

I'm encountering an issue when working with the validate() function of R in my shiny app. So this is a user form, I have an action button on the UI side called "go_to_booking_form_1" and I want it to show a sweet alert and go to the next menu tab…
0
votes
0 answers

Is it possible to use selectInput in boxDropdown?

Is it possible to use selectInput in boxDropdown? Once I try to select an item, the dropdown closes. It seems to close if the user does not click exactly on a button. If I press slightly below a checkbox from checkboxGroupInput it closes, but not if…
qwertzuiop
  • 172
  • 8
0
votes
0 answers

Shiny Dashboard: DataTable in Skin "midnight" + sizing of the table

I am currently building a shiny dashboard with the skin "midnight" from shinydashboardPlus. In this app, I would like to show the data table. However, the default settings of the datatable do not seem to work with a dark…
0
votes
1 answer

Shiny in R: Font Awesome icon ('gears') is missing

I got handed over a multiple-file Shiny project with custom css and the repo is a mess (I have no session info whatsoever). After fixing most bugs, I am stuck at this: "This Font Awesome icon ('gears') does not exist" Searching for the button, I…
0
votes
1 answer

R Shiny: how to use updateBox() within shinymodule, to update a box outside the module?

I'm currently rewriting a big shinyapp and I try to shift as much as possible into modules. At some point, the user can choose weather to use stuff that is inside box a) or inside box b). I know how to toggle or remove / restore a box in shiny, but…
Jans
  • 13
  • 2
0
votes
2 answers

Set an alert when all boxes are closed or collapsed in shinydashboardPlus

I have a shinydashboard with 10 boxes, and which can be closed or collapsed. All the box id starts with "box". I was trying set an alert button when all boxes are closed or collapsed. Below is the code of the…
Williams86
  • 320
  • 1
  • 11