滚动到rhandsontable

时间:2016-03-15 03:49:17

标签: r shiny handsontable

我在固定高度的容器中呈现了一个rhandsontable对象,如下面的示例闪亮server.R文件所示,其中df是任意data.frame。每次更新df时,我都希望自动将表格滚动到最后一行。可以这样做吗?

library(shiny)
library(rhandsontable)

shinyServer(function(input, output) {
  output$table <- renderRHandsontable({
    rhandsontable(df, height=500)
  })
})

0 个答案:

没有答案