-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Hello,
great package for date time picker, thank you!
I observed some funky behavior on the app where if you select October 31st then the output jumps to October 1st. This appears to happen with every month that ends with the date of 31st, ie November works ok. Am using the example from package:
if(interactive()){
library(shinyDatetimePickers)
library(shiny)
ui <- fluidPage(
br(),
sidebarLayout(
sidebarPanel(
datetimeMaterialPickerInput(
"dtmpicker",
label = "Appointment",
disablePast = TRUE
)
),
mainPanel(
verbatimTextOutput("dtmpicker")
)
)
)
server <- function(input, output){
output[["dtmpicker"]] <- renderPrint({
input[["dtmpicker"]]
})
}
shinyApp(ui, server)
}
this is probably unintended but wonder is it possible to correct?
thanks,
Andras
Metadata
Metadata
Assignees
Labels
No labels