trafficonese / widgetframe

Embed htmlwidgets in Responsive iframe.
https://bhaskarvk.github.io/widgetframe/
Other
69 stars 11 forks source link

scrolling DT::datatable #16

Closed jcolomb closed 6 years ago

jcolomb commented 6 years ago

hey, I want to have a DT::datatable in my blogdown website. widgetframe make it possible, but my tables are larger than the width of a page and it does not scroll horizontally once into the widgetframe.

Any idea how to work around that ?

jcolomb commented 6 years ago

A workaround is to use datatable scrolling extensions:

DT::datatable(
  datahere,
extensions = list('FixedColumns',
                    'Scroller'),

  options = list(
    deferRender = TRUE,
    scrollY = 200,
    scroller = TRUE
    ,
    dom = 't',
    scrollX = TRUE,

    fixedColumns = TRUE
  )
bhaskarvk commented 6 years ago

Closing as workaround is available. Reopen if necessary