Change the label and/or value of a time input
Arguments
- session
The
sessionobject passed to function given toshinyServer. Default isgetDefaultReactiveDomain().- inputId
The id of the input object.
- label
The label to set for the input object.
- value
The desired time value. Must be a instance of
DateTimeClasses.
See also
Other shinyTime functions:
shinyTimeExample(),
timeInput()
Examples
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
timeInput("time", "Time:"),
actionButton("to_current_time", "Current time")
)
server <- function(input, output, session) {
observeEvent(input$to_current_time, {
updateTimeInput(session, "time", value = Sys.time())
})
}
shinyApp(ui, server)
}