Hey there, first thanks for the awesome Widgets your project provides, it's a pleasure to use them!
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
br(),
airDatepickerInput(
inputId = "timezone",
label = "timezone wrong (should be pm)",
value = as.POSIXct("2022-02-15 22:00:00"),
timepicker = TRUE
),
verbatimTextOutput(outputId = "timezone"),
br(),
airDatepickerInput(
inputId = "language",
label = "'language = \"de\"' broken (no minutes displayed)",
value = as.POSIXct("2022-02-15 22:00:00"),
timepicker = TRUE,
language = "de"
),
verbatimTextOutput(outputId = "language"),
br(),
airDatepickerInput(
inputId = "inline",
label = "'inline = TRUE' broken (wrong time)",
value = as.POSIXct("2022-02-15 22:00:00"),
timepicker = TRUE,
inline = TRUE
),
verbatimTextOutput(outputId = "inline")
)
server <- function(input, output, session) {
output$timezone <- renderPrint(input$timezone)
output$language <- renderPrint(input$language)
output$inline <- renderPrint(input$inline)
}
shinyApp(ui = ui, server = server)
Hey there, first thanks for the awesome Widgets your project provides, it's a pleasure to use them!
I'm trying to integrate the
airDatepickerInput()into my app (shinyWidgets v.0.7.5), but ran into 3 bugs (minimal example at the end):aminstead ofpmwhen passing a time after midday.language = "de"the widget displaysiiinstead of the minutes.inline = TRUEthe time specified invalueis ignored and the widget uses the current time.Thanks for your support!