Questions tagged [shinydashboardplus]
44 questions
0
votes
2 answers
Show only one notification in Shiny
I would like to control the phone number by showing a notification :
If the user type a wrong number (like "aaaa")
If the user type a long number (greater than 10 digits)
I used the function showNotification from shiny with closeButton = FALSE and…

John john
- 437
- 3
- 13
0
votes
1 answer
How to make a gradient box closable in shiny
Now intially the box is open instead of that i need the box should be closed.
The box should't open untill i click on the collapsible
library(shiny)
library(shinydashboard)
shinyApp(
ui = dashboardPage(
dashboardHeader(),
…

sayile firahs
- 105
- 7
0
votes
1 answer
Adjust UI element positions in shindashboardPlus header
I have a Shiny application with a toggle switch on the Header that. When the toggle is pressed, it runs a long function and a message is displayed to the user that something is happening. A very simplified version is below.
The functionality that…

KirkD-CO
- 1,603
- 1
- 22
- 35
0
votes
2 answers
Add progress meter to header in Shiny (shinydashboard/shinydashboardplus)
I have a shiny app that uses shinydashboard and shinydashboardPlus. In the header, I was able to add a switchInput to allow users to toggle between two options. When the options are changed, the overall UI (which is fairly complex) is updated to…

KirkD-CO
- 1,603
- 1
- 22
- 35
0
votes
1 answer
Change the content of shinydashboard sidebars according to tabPanel selected
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 two sidebars to change and display different widgets. In the commeted -out lines you can see the…

firmo23
- 7,490
- 2
- 38
- 114
0
votes
1 answer
shinydashboard vs shinydashboardPlus - dashboardsidebar title differences
I have a Shiny app built with shinydashboard and I've just discovered shinydashboardPlus. One nice option is to have the sidebarMenu "minified", or when minimized it doesn't go away completely, but just displays the icons for each menuItem. …

KirkD-CO
- 1,603
- 1
- 22
- 35
0
votes
1 answer
Remove shaded background and border of indicators in shinydashboardPlus::carousel
I'm using {shinydashboard} and {shinydashboardPlus} to display a carousel. When I click on the carousel indicators they are displayed with a shaded background and a blue border (this wasn't the case in an earlier version of…

TimTeaFan
- 17,549
- 4
- 18
- 39
0
votes
1 answer
RenderUI issues with userBox
I am attempting to create a userBox (package: ShinyDashboardPlus) in a RShiny dashboard using a uiOutput in the UI function. My primary issue is that I could like the userBox to update based on what athlete is selected in a selectInput. As a result,…

Zachary McClean
- 11
- 4
0
votes
1 answer
resizing an action button causes misalignment in the header in shinydashboard
I have placed an action button on the header of my shinydashboard that automatically opens the default mail application and fills the To: line. However, when I resize the button, the collapsible sidebar header and the main header get misaligned…

WannabeSmith
- 435
- 4
- 18
0
votes
1 answer
How to remove logo header/sidebar header from shinydashboardPlus?
I am using shinydashboardPlus because I want to use dashboardFooter, but I removed the sidebar. the problem is that the logo header/sidebar header is still there, and haven't figure out a way to remove it. I tried to solve the issue by changing my…

ViviG
- 1,613
- 1
- 9
- 23
0
votes
1 answer
ShinyTree in ShinyDashboard sidebar
I have a nice dynamically produced shinyTree that displays beautifully in the main body of a shinydashboard. Which is wonderful. However, what I actually want is for it to be in the sidebar so it can be used to select a tab. But no matter what I…

vorpal
- 268
- 4
- 17
0
votes
2 answers
ShinydashboardPlus: "Error in validateBoxProps(title = title, label = label, sidebar = sidebar, : is.numeric(width) is not TRUE"
Error in validateBoxProps(title = title, label = label, sidebar = sidebar, :is.numeric(width) is not TRUE
Has anyone seen this code while trying to run a Shiny app? It appeared when I started using library(shinydashboardPlus) and specifically the…
0
votes
0 answers
shinydashboard - Sidebar toggle button doesn't work after update
After updating packages to the newest versions, sidebar toggle button has disappeared. It's not displayed properly (there should be 3 horizontal bars) and it doesn't work - clicking it doesn't make any action.
Previously it looked like…
0
votes
1 answer
Downlaod plotly waterfall chart as pdf does not work within shinydashboard
Im trying to download the following waterfall chart created inside a shiny dashboard as a pdf but when I use the shinydashboard interface I download an empty pdf.
library(shiny)
library(plotly)
library(shinydashboard)
library(shinydashboardPlus)
ui…

firmo23
- 7,490
- 2
- 38
- 114