R Shiny DT响应式数据表高度

时间:2019-08-13 07:49:05

标签: r datatable shiny responsive dt

我正在尝试在Shiny中创建一个全高数据表,该表根据可用高度显示许多行,并且页面数也会发生变化。

DT responsive扩展名用于宽度。身高可以相等吗?

答案可能是使用JavaScript并通过计算新的show N entries值来N顶部的框,并根据表可以知道行的大​​小对最大空间进行一些计算。

这是一个开始:

library(shiny)

ui <- fluidPage(

    titlePanel("Arbitrary component to remove space in the page"),

    dataTableOutput('table_name')
)

server <- function(input, output) {
    output$table_name <- DT::renderDataTable({
        data.frame(a=1:100, b = 100:1, c = 101:200)
    })
}

shinyApp(ui = ui, server = server)

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:2)

下面是一个基本示例,说明如何根据窗口的高度更改表中的行数。这不是最有效的方法,但是可以并且可以帮助您创建更好的解决方案。

请注意,应根据您的需要调整表格调整的延迟时间。

jscode.autoHeightDT <- '
  autoHeightDT = function() {
    var offset = 100; // pixels used for other elements like title, buttons, etc

    // compute the number of rows to show in window
    var n = Math.floor(($(window).height() - offset) / $("#table_name tr").height());

    // set the new number of rows in table
    t = $("#table_name .dataTable").DataTable().page.len(n).draw();
  }

  // to adjust the height when the app starts, it will wait 0.8 seconds
  setTimeout(autoHeightDT, 800);

  // to react to changes in height of window 
  $(window).resize(function() {
    autoHeightDT();
  });

'

library(shiny)
library(DT)

ui <- fluidPage(
    tags$script(jscode.autoHeightDT), # includes JavaScript code
    titlePanel("Arbitrary component to remove space in the page"),

    dataTableOutput('table_name')
)

server <- function(input, output) {
    output$table_name <- DT::renderDataTable({
        data.frame(a=1:100, b = 100:1, c = 101:200)
    })
}

shinyApp(ui = ui, server = server)