我在固定高度的容器中呈现了一个rhandsontable
对象,如下面的示例闪亮server.R
文件所示,其中df
是任意data.frame
。每次更新df
时,我都希望自动将表格滚动到最后一行。可以这样做吗?
library(shiny)
library(rhandsontable)
shinyServer(function(input, output) {
output$table <- renderRHandsontable({
rhandsontable(df, height=500)
})
})