test_app/test-app-renderTimeInput.R

library(shiny)

ui <- fluidPage(
  renderTimeInput_UI("time"),
  checkboxInput("check", "Render?"),
  verbatimTextOutput("raw")
)

server <- function(input, output, session) {
  
  is.check <- reactive({input$check})
  
  renderTimeInput_Server("time", render_lgl = is.check())
  
  output$raw <- renderPrint({ input$check })
}

shinyApp(ui, server)
Lightbridge-KS/ZoomInterface documentation built on April 24, 2022, 4:51 p.m.