Learn R Programming

daterangepicker (version 0.1.0)

updateDaterangepicker: updateDaterangepicker

Description

Change the start and end values of a daterangepicker on the client

Usage

updateDaterangepicker(
  session,
  inputId,
  label = NULL,
  start = NULL,
  end = NULL,
  min = NULL,
  max = NULL,
  icon = NULL,
  options = NULL
)

Arguments

session

The session object passed to function given to shinyServer.

inputId

The id of the input object.

label

The label to set for the input object.

start

The start date. Either a Date object, or a string in yyyy-mm-dd format.

end

The end date. Either a Date object, or a string in yyyy-mm-dd format.

min

The earliest date a user may select.

max

The latest date a user may select.

icon

Icon to display next to the label.

options

List of further options. See daterangepickerOptions

See Also

Other daterangepicker Functions: daterangepickerOptions(), daterangepicker()