r语言 - 闪亮 - DT - 单行选择,跨多个 DT::表



在下面的示例中,我有 3 个DT::datatables。我希望用户能够从所有这些表中选择不超过一行。因此,我根据文档中的"操作现有数据表实例"部分使用 dataTableProxyselectRow。它工作正常。

但是,在我的应用程序中,我有 24 个(将该值称为 N (表。如果我尝试将下面的代码调整到我的 24 个表页面,我会得到大量代码。

什么是

更聪明的方法?

特别是,我怎样才能:

  • 动态声明观察者?(由用户5029763回答(
  • 知道最后点击了哪个表(不是行(吗?(即如何重写reactiveText()

编辑:我在下面的代码中复制了user5029763的答案(见下文(。

DTWrapper <- function(data, pl = 5, preselec = c()){
  datatable(data,
            options = list(pageLength = pl, dom='t',ordering=F),
            selection = list(mode = 'single', selected= preselec),
            rownames = FALSE)
}
resetRows <- function(proxies, self){
  for (i in 1:length(proxies)){
    if (self != i){
      proxies[[i]] %>% selectRows(NULL)
    }
  }
}
lapply(1:3, function(id) {
  observe({
    rownum <- input[[paste0("tab",id,"_rows_selected")]]
    if (length(rownum) > 0) { resetRows(proxyList(), id) }
  })
})
server = function(input, output) {
  output$tab1 <- DT::renderDataTable(DTWrapper(head(mtcars[,1:3]), input$selectTop))
  output$tab2 <- DT::renderDataTable(DTWrapper(head(mtcars[,1:3]), input$selectTop))
  output$tab3 <- DT::renderDataTable(DTWrapper(head(mtcars[,1:3]), input$selectTop))
  proxyList <- reactive({
    proxies = list()
    for (i in 1:3){
      tableID <- paste("tab", i, sep="")
      proxies[[i]] = dataTableProxy(tableID)
    }
    return(proxies)
  }) 
  reactiveText <- reactive({
    rownum1 <- input$tab1_rows_selected
    rownum2 <- input$tab2_rows_selected
    rownum3 <- input$tab3_rows_selected
    if (length(rownum1) > 0){return(c(rownum1, 1))}
    if (length(rownum2) > 0){return(c(rownum2, 2))}
    if (length(rownum3) > 0){return(c(rownum3, 3))}
  })
  output$txt1 <- renderText({
    paste("You selected row ", reactiveText()[1]
          , " from table ", reactiveText()[2], ".", sep="")
  })
}
shinyApp(
  ui = fluidPage(
    fluidRow(column(4,DT::dataTableOutput("tab1"))
             , column(4,DT::dataTableOutput("tab2"))
             , column(4, DT::dataTableOutput("tab3")))
    ,fluidRow(column(4,textOutput("txt1")))
  ),
  server = server
)

textOutput是:"您从第 Y 个表中选择了第 X 行"。

编辑后:

您可以尝试模块。另一种方式是lapply.

lapply(1:3, function(id) {
    observe({
      rownum <- input[[paste0("tab",id,"_rows_selected")]]
      if (length(rownum) > 0) {
        resetRows(proxyList(), id)
        
        msg <- paste0("You selected row ", rownum, ", from table ", id, ".")
        output$txt1 <- renderText(msg)
      }
    })
})

最新更新