I noticed few old issues about this topic not yet addressed, and I would submit it again as is pretty frustrating.
Basically when in CONNECT. The DT scroll bar is not working with Flexdashboard using shiny runtime and scroll vertical_layout.
The DT is not contained in the column, and consequently the scroll bar disappear.
It works perfectly with RSTUDIO, but doesn't when the report is published in CONNECT.
Is it a Flexdashboard or Connect issue?
Here a reproducible example (also attached):
title: "Untitled"output: flexdashboard::flex_dashboard: orientation: row vertical_layout: scrollruntime: shiny---
```{r setup, include=FALSE}library(flexdashboard)```
Column Sidebar {.sidebar}-----------------------------------------------------------------------
Column {data-width=650}-----------------------------------------------------------------------
### Chart A
```{r}DT::renderDataTable(server=T,{ #a very wide and tall table data=mtcars data=cbind(data,data) data=cbind(data,data) data=rbind(data,data) data=rbind(data,data) dt= DT::datatable(data ,extensions = c('FixedColumns') ,escape=FALSE ,rownames=FALSE ,filter = list(position = 'top', clear = FALSE, plain=T) ,options = list( dom = 'ifrtlp' ,fixedColumns=list(leftColumns =1) ,searching=T ,pageLength=10 ,scrollX=TRUE ,autoWidth = T ,deferRender=F ,stateSave=TRUE )) return(dt)})```
Column {data-width=350}-----------------------------------------------------------------------
### Chart B
```{r}
```
### Chart C
```{r}
```
--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/d46e2c08-e9c7-4cb4-b1db-5b81bc338ecb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.