Hello, I have a renderDataTable object in a flexdashboard Shiny app and the header column doesn't scroll with the data across the bottom. Here's all of the code that I think controls the object. Thanks!
DT::renderDataTable({
t <- datatable(t, extensions = 'Buttons',
options = list(scrollY = '300px', dom = 'Bfrtip',
buttons = c('csv'), paging = F), rownames = F)
t
}, rownames = F)