Pressing the "Test Bins" button should cause the observeEvent function to print out 30 and then 25 and 35 after the slider is updated, but 30 is repeatedly printed both before and after the updateSliderInput's. For some reason the observeEvent code doesn't seem to process the change in the slider input.
ui.R:
library(shiny)
shinyUI(fluidPage(
titlePanel("Old Faithful Geyser Data"),
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30),
actionButton("test","Test Bins")
),
mainPanel(
plotOutput("distPlot")
)
)
))
server.R:
library(shiny)
shinyServer(function(input, output, session) {
output$distPlot <- renderPlot({
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
observeEvent(input$test,{
print(input$bins)
updateSliderInput(session,"bins",value=25)
print(input$bins)
updateSliderInput(session,"bins",value=35)
print(input$bins)
})
})
input$bins
is not reactive in currentobserveEvent()
. A separateobserveEvent
oninput$bins
will print the values before and after hitting the button. Makes sense?? – Sagar