We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reactlog 1.0 does not appear to work with shinydashboard. Is there a plan to implement this compatibility in the future?
The text was updated successfully, but these errors were encountered:
Do you have an example where it doesn't work?
I can get it to run on a basic example.
library(shiny) options(shiny.reactlog = TRUE) library(shinydashboard) ui <- dashboardPage( dashboardHeader(title = "Basic dashboard"), dashboardSidebar(), dashboardBody( # Boxes need to be put in a row (or column) fluidRow( box(plotOutput("plot1", height = 250)), box( title = "Controls", sliderInput("slider", "Number of observations:", 1, 100, 50) ) ) ) ) server <- function(input, output) { set.seed(122) histdata <- rnorm(500) output$plot1 <- renderPlot({ data <- histdata[seq_len(input$slider)] hist(data) }) } shinyApp(ui, server)
(matching port number)
Sorry, something went wrong.
No branches or pull requests
reactlog 1.0 does not appear to work with shinydashboard. Is there a plan to implement this compatibility in the future?
The text was updated successfully, but these errors were encountered: