ismirsehregal

Results 75 comments of ismirsehregal

This would be useful! For those interested in a workaround: ``` library(shiny) library(shinydashboard) show_tab_2

Check library([fresh](https://github.com/dreamRs/fresh)).

Same issue here. I can reproduce it with many items in the sidebar: ``` library(shiny) library(shinydashboard) ui

This answer provided by erikrs92 works: [https://github.com/almasaeed2010/AdminLTE/issues/1418](https://github.com/almasaeed2010/AdminLTE/issues/1418) change: ``` .wrapper{height:100%;position:relative;overflow-x:hidden;overflow-y:auto} ``` to: ``` .wrapper{height:100%;position:relative;overflow-x:hidden;overflow-y:hidden} ``` inside: R-x.x.x\library\shinydashboard\AdminLTE\AdminLTE.min.css Or add: ``` dashboardBody(tags$head(tags$style( HTML('.wrapper {height: auto !important; position:relative; overflow-x:hidden; overflow-y:hidden}') ))) ```...

You can wrap the boxes in a `fluidRow` to avoid the above issue: ``` library(shiny) library(shinydashboard) library(stringi) library(stringr) ui

Please check the following: ``` library(shiny) library(rhandsontable) ui

This seems to be an issue with the shiny implementation - it's working fine when used without shiny: `rhandsontable(data.frame(x = runif(5), y = runif(5)))`: ![Animation](https://user-images.githubusercontent.com/36849480/152825248-8d091a0d-35ea-4460-a8ee-c1e3cbfb2050.gif)

Please check my example [here](https://github.com/jrowen/rhandsontable/issues/105#issuecomment-494740911).

Link to related SO-Question: https://stackoverflow.com/questions/68496116/in-r-shiny-how-do-you-reset-data-reversing-all-manual-inputs-in-rhandsontable/