Compare commits

...

3 Commits

Author SHA1 Message Date
marcelcosta 44901be490 Corregir año en la fecha de tabla clinics 2022-04-01 12:26:04 +02:00
marcelcosta 3c8a69b21c Merge branch 'main' into dev 2022-04-01 12:21:02 +02:00
Costa 9b8f24ddd8 Corregir formato en las fechas de la plantilla CLINICS. 2022-03-31 14:18:46 +02:00
+3 -1
View File
@@ -204,7 +204,9 @@ server <- function(input, output) {
output$CLINICS <- renderRHandsontable({
if (!is.null(CLINICS)){
rhandsontable(values[["CLINICS"]], stretchH = "all", readOnly = F, useTypes = T)
rhandsontable(values[["CLINICS"]], stretchH = "all", readOnly = F, useTypes = T) %>%
hot_col(values[["CLINICS"]] %>% select(lubridate::is.Date) %>% colnames,
dateFormat = "DD/MM/YYYY", type = "date")
}
})