如何在闪亮的 DT (renderDataTable) 中使用 scrollx
Posted
技术标签:
【中文标题】如何在闪亮的 DT (renderDataTable) 中使用 scrollx【英文标题】:how to use scrollx in shiny DT (renderDataTable) 【发布时间】:2017-05-05 05:51:24 【问题描述】:我想在闪亮的 DataTable 中使用 scrollx 选项,因为有很多字段。 (参考:https://datatables.net/examples/basic_init/scroll_x.html)
我该如何使用?我找不到任何例子。
【问题讨论】:
【参考方案1】:我找到了!在mainPanel unable work in Shiny Dashboard
只需添加如下选项列表
output$actCam <- renderDataTable(
datatable(summaryDay[campaignid %in% act_idx,],
options = list(scrollX=TRUE, scrollCollapse=TRUE))
)
【讨论】:
以上是关于如何在闪亮的 DT (renderDataTable) 中使用 scrollx的主要内容,如果未能解决你的问题,请参考以下文章