Created
July 24, 2016 13:34
-
-
Save MySchizoBuddy/5f89652e181eb382cf81596028cf46d2 to your computer and use it in GitHub Desktop.
This code shows both scrolling and disappearing table issue with rhandsontable when used with shiny runtime of flexdashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
output: | |
flexdashboard::flex_dashboard: | |
orientation: columns | |
vertical_layout: fill | |
runtime: shiny | |
--- | |
```{r setup, include=FALSE} | |
library(rhandsontable) | |
``` | |
Column | |
----------------------------------------------------------------------- | |
### Chart A | |
```{r} | |
rhandsontable(mtcars, width = 700, height = 500) | |
``` | |
Column | |
----------------------------------------------------------------------- | |
### Chart A | |
```{r} | |
rHandsontableOutput("TableC") | |
output$TableC <- renderRHandsontable(mtcars) | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment