daterangepicker in r

Hello community, how can i get this format in r:

...

https://github.com/dreamRs/shinyWidgets has an airDatePicker

Thank you @nirgrahamuk but I can't see the right hand side option for hours or
days

you're right, ive never seen a time specific widget. let me know if you find one.

on reflection it does seem to have some time features but i've never used them

  airDatepickerInput(
inputId,
  label = NULL,
  value = NULL,
  multiple = FALSE,
  range = FALSE,
  timepicker = FALSE,    <--- ***
  separator = " - ",
  placeholder = NULL,
  dateFormat = "yyyy-mm-dd",
  minDate = NULL,
  maxDate = NULL,
  disabledDates = NULL,
  view = c("days", "months", "years"),
  startView = NULL,
  minView = c("days", "months", "years"),
  monthsField = c("monthsShort", "months"),
  clearButton = FALSE,
  todayButton = FALSE,
  autoClose = FALSE,
  timepickerOpts = timepickerOptions(),
  position = NULL,
  update_on = c("change", "close"),
  addon = c("right", "left", "none"),
  language = "en",
  inline = FALSE,
  width = NULL
)

timepickerOptions(
  dateTimeSeparator = NULL,
  timeFormat = NULL,
  minHours = NULL,
  maxHours = NULL,
  minMinutes = NULL,
  maxMinutes = NULL,
  hoursStep = NULL,
  minutesStep = NULL
)

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.