Change the value of a progress
input on the client.
update_progress(
session,
input_id,
type = c("increment", "decrement", "label", "value"),
value = 1
)
The session
object passed to function given to shinyServer
.
The id of the input object
Whether you want to increase the progress bar ("increment"
), decrease the
progress bar ("decrement"
), update the label "label"
, or set it to a specific value ("value"
)
The value to increase/decrease by, or the value to be set to