You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the waiter package in a shinyApp with shinydashboardPLUS. The waiter-overlay does react to"standard" resizing events but not to the toggle-sidebar event that comes with shinydashboardPLUS.
It would be create if the width of the waiter overlay changed when the sidebar is toggled. Does anyone know a quick fix?
Here is a repex:
library(shiny)
library(waiter)
library(shinydashboardPlus)
ui<- dashboardPage(header=dashboardHeader(),
sidebar=dashboardSidebar(),
body=dashboardBody(useWaiter(), # include dependencies
actionButton("show", "Show loading for 3 seconds"),
div(id="load","hello"))
)
server<-function(input, output, session){
observeEvent(input$show, {
waiter_show( id="load",# show the waiterhtml= spin_fading_circles() # use a spinner
)
Sys.sleep(3) # do something that takes time
waiter_hide() # hide the waiter
})
}
shinyApp(ui, server)
The text was updated successfully, but these errors were encountered:
I am using the waiter package in a shinyApp with shinydashboardPLUS. The waiter-overlay does react to"standard" resizing events but not to the toggle-sidebar event that comes with shinydashboardPLUS.
It would be create if the width of the waiter overlay changed when the sidebar is toggled. Does anyone know a quick fix?
Here is a repex:
The text was updated successfully, but these errors were encountered: