По умолчанию вертикальная прокрутка отсутствует?
Я вижу один в этом примере:
library(shiny)
library(rhandsontable)
ui <- fluidPage(
column(8,
rHandsontableOutput("loaded_table", height = "200px")
)
)
server <- function(input, output, session) {
output$loaded_table <- renderRHandsontable({
rhandsontable(iris, maxRows = 20)
})
}
shinyApp(ui, server)