Skip to contents

A date picker.

Usage

date_picker(id, ...)

Arguments

id

The id of the date picker.

...

Any named properties.

Details

See date picker

Examples

date_picker(
  "date",
  value = "2024-02-29",
  `value-state` = "Information",
  htmltools::div(
    slot = "valueStateMessage",
    "Thanks for picking a date!"
  )
)
#> <ui5-date-picker id="date" value="2024-02-29" value-state="Information">
#>   <div slot="valueStateMessage">Thanks for picking a date!</div>
#> </ui5-date-picker>