mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-30 01:08:43 -05:00
17 lines
786 B
R
17 lines
786 B
R
#' @details
|
|
#' The input updater functions send a message to the client, telling it to
|
|
#' change the settings of an input object. The messages are collected and sent
|
|
#' after all the observers (including outputs) have finished running.
|
|
#'
|
|
#' The syntax of these functions is similar to the functions that created the
|
|
#' inputs in the first place. For example, \code{\link{numericInput}()} and
|
|
#' \code{updateNumericInput()} take a similar set of arguments.
|
|
#'
|
|
#' Any arguments with NULL values will be ignored; they will not result in any
|
|
#' changes to the input object on the client.
|
|
#'
|
|
#' @param session The \code{session} object passed to function given to
|
|
#' \code{shinyServer}.
|
|
#' @param inputId The id of the input object.
|
|
#' @param label The label to set for the input object.
|