DRAJES / chiffres_cles.github.io

Chiffres clés Jeunesse Engagement et Sports de Bourgogne-Franche-Comté
https://drajes.github.io/chiffres_cles.github.io/index.html
GNU General Public License v3.0
2 stars 0 forks source link

ajouter les possiblités d'export tableaux #13

Closed pslebre closed 1 year ago

pslebre commented 1 year ago

downloadthis::

pslebre commented 1 year ago
  1. Possibilité de passer par Datatable
tab %>%
  formattable() %>%
  as.datatable(escape = FALSE,
               extensions = 'Buttons',
               options = list(
                 dom = 'Bfrtip',
                 buttons = c('copy', 'csv', 'excel', 'pdf', 'print'),
                 scrollX = FALSE),
               rownames = FALSE)

mais moins joli et les tris fonctionnent mal

  1. Passer par shiny (ajouter runtime : shiny)
## create downloadButton in Rmd document
downloadHandler(
  filename = function() { 
    paste("data-", Sys.Date(), ".csv", sep = "")
  }, 
  content = function(file) {
    write.csv(myData, file)
  },
  outputArgs = list(label = "Download .csv")
)

pas testé mais plus lourd

  1. le Copier/Coller fonctionne
pslebre commented 1 year ago

Peut-être réglé avec crosstalk et datatable (DT) sur les tableaux EPCI et BV

pslebre commented 1 year ago

voir filtre sur tableaux crosstalk et DT

pslebre commented 1 year ago

fait en partie sur les tableaux DT filtrés. Casse le rendu des formattable