Skip to contents

Server-side update for el_date_picker(). Supports updating value, disabled state, type, clearable, readonly, and placeholder text.

Usage

update_el_date_picker(
  session,
  id,
  value = NULL,
  disabled = NULL,
  type = NULL,
  clearable = NULL,
  readonly = NULL,
  placeholder = NULL
)

Arguments

session

Shiny session object.

id

Date picker ID (un-namespaced).

value

New picker value (string or two-element vector for range types).

disabled

New disabled state.

type

New picker type.

clearable

New clearable state.

readonly

New readonly state.

placeholder

New placeholder text (non-range types).