在Shiny not display,html代码中显示dataTable中的复选框,如何解决这个问题?

时间:2015-05-29 11:57:45

标签: r checkbox datatables shiny

我正在Shiny中显示一个dataTable,我在我的一个dataTables中添加了复选框,但它没有显示复选框,但显示代码复选框的html代码“”有人知道修复此问题吗?谢谢!

以下是我使用的代码摘要:

Ui文件:

DT::dataTableOutput(paste0("siFactors_",i))

Server file:
output[[paste0('siFactors_', i)]] <- DT::renderDataTable({
                datatable(final_array,
                   extensions='KeyTable',
                    rownames = checkboxRows(final_array, checked = box_indices),
                               options = list(deferRender = TRUE,
                                               paging = FALSE,
                                              searching = FALSE,
                                            autoWidth = FALSE,
                                                scrollX = TRUE,
                                                scrollY = 600,
                                                scrollCollapse = TRUE                                       
                                )
                  )
      })

0 个答案:

没有答案