Questions tagged [shinydashboardplus]

44 questions
9
votes
1 answer

Shiny Dashboadpage lock dashboardHeader on top

I use R Shiny Dashboardpage to build my interactive dashboard. I want to lock the dashboardHeader and sidebarMenu so that when scrolling, the header and sidebar remain on the same position. For the sidebarMenu, this can be done in the…
Dendrobates
  • 3,294
  • 6
  • 37
  • 56
6
votes
1 answer

Function dashboardPagePlus() is not compatible with latest shinydashboardPlus version

I use the exact code from here to run the shinydashboardPlus. But when I try to run the app I get: could not find function "dashboardPagePlus". I tried the CRAN and the github version with # for the CRAN…
firmo23
  • 7,490
  • 2
  • 38
  • 114
3
votes
2 answers

Dynamic Image Carousel R Shiny

I would like to dynamically add a carousel of images within a shiny dashboard based on a filtered list. I have tried the shinydashboardPlus package as well as the slickR package but can't seem to get either of them to work. Tried my best to…
Melissa Salazar
  • 517
  • 5
  • 16
3
votes
0 answers

R shinydashboardPlus 2.0.0 equivalent of sidebar_fullCollapse (or css)

Can someone help me out with the right css code to allow me to (1) Have the dashboardControlbar i.e. the right sidebar (previously known as rightSidebar in earlier versions of shinydashboardPlus < 2.0.0) to be open on start-up (2) Have the option to…
lmsimp
  • 882
  • 7
  • 22
2
votes
1 answer

The icon that hides and seek right sidebar in shinydashboardPlus() is not working

In the shinydashboardPlus() below I activate and deactivate the right sidebar ability based on the tab I use. The issue is that when Im in the 2nd tab I cannot hide the right sidebar by clicking on the icon above it. ## app.R…
firmo23
  • 7,490
  • 2
  • 38
  • 114
2
votes
2 answers

shinydashboardPlusGallery() example does not work

I have installed the R package shinydashboardPlus following the instructions on the official GitHub page in the Demo Section: https://github.com/RinteRface/shinydashboardPlus As instructed I installed and loaded the package as well as the package…
2
votes
1 answer

toggle controlbar based on tab and action button

I'm trying to toggle the control bar using an actionLink in the top right (to basically copy what the gears icon is doing, and later I will remove the gears icon to just have one actionLink) and also to automate the toggling such that when the user…
karuno
  • 391
  • 4
  • 12
2
votes
1 answer

Can you add shinydashboardplus accordion items using lapply or a loop?

I'm trying to create an accordion in a shiny app using shinydashboardplus accordion function and, since it's very repetitive and all the info for the accordion comes from a datable, ideally I'd like to use a lapply function or for loop. I'm not sure…
Ainhoa
  • 191
  • 7
2
votes
1 answer

Creation and deletion of dynamic boxes in R Shiny using shinydashboardplus package (boxDropdownItem)

I'm trying to create a page to include and exclude boxes dynamically using boxDropdownItem from shinydashboardplus package, but the application is crashing, could someone help me please? *Solutions using javascript are also welcome :) Here my…
2
votes
1 answer

Hide and show sidebars based on chosen tabPanel in shinydashboard

I have the shinydashboard below in which I have 3 tabPanels. In the 1st tabPanel "Resource Allocation" I want the left and right sidebar open by default. In the 2nd and 3rd tabpanels ("Time Series","Longitudinal View") I want only left sidebar and…
firmo23
  • 7,490
  • 2
  • 38
  • 114
2
votes
1 answer

Shinydahsboardplus: how to add box without a title?

after recent update of ShinydasboardPlus (to 2.0) I can't manage to make box with no header and and no space for header. I tried title = NULL, headerBorder = FALSE and still have this space. How to get rid of that? I want a box ONLY with content, no…
Art
  • 1,196
  • 5
  • 18
  • 34
1
vote
1 answer

Shinydashboard. How to unselect menuItem?

I have this code: library(shiny) library(shinydashboard) library(shinydashboardPlus) shinyApp( ui = dashboardPage( header = dashboardHeader(userOutput("user")), sidebar = dashboardSidebar(shinyjs::useShinyjs(),uiOutput("sidebarpanel")), …
Lev
  • 693
  • 1
  • 8
  • 24
1
vote
1 answer

Fix the position of the shiny dashboard header toggle button

In the shiny app below I want the toggle button that shows and hides the sidebar to remain fixed in its position whether the sidebar is hidden or not. Now when the sidebar is hidden there is a blue square empty gap between the button and the…
firmo23
  • 7,490
  • 2
  • 38
  • 114
1
vote
1 answer

R Shiny navbarPage; values not loading from server

Help! For the life of me, I can't get values to populate from the server to the infoBox in the UI. I've tried to define the infoboxes from the server section, but the infoboxes will only appear if I construct them in the UI (as shown below). The…
T2029
  • 65
  • 2
  • 9
1
vote
1 answer

Remove the click trigger from flipbox

I use the function flipBox from shinydashboardPlus to create flip box and I add a button. The user have to clik on it to flip the box. But the box also flip when we click on it and I would like to desactive it I mean prevent fliping by cliking on…
John john
  • 437
  • 3
  • 13
1
2 3