使用数据表时,一切都很清楚 - 我可以选择 5、10、25、50 或 100 个条目。
shinyApp(
ui = fluidPage(
fluidRow(
column(12,
dataTableOutput('table')
)
)
),
server = function(input, output) {
output$table <- DT::renderDataTable(iris)
}
)
不幸的是,在 rhandsontable 我找不到合适的解决方案。我唯一的结果是:
shinyApp(
ui = fluidPage(
fluidRow(
column(12,
rHandsontableOutput('table')
)
)
),
server = function(input, output) {
output$table <- renderRHandsontable(
rhandsontable(iris, width = 550, height = 300)
)
}
)
如何强制 rhandsontable 给我 selectinput 与条目数?