9

我得到了一个带有 DataTables 的 RStudio Shiny 服务器页面,并且我得到了 TableTools 和 ColReorder 在下面的示例中工作,但是 ColVis(Show/hide columns按钮)的行为方式与http://datatables.net/extensions/colvis/中的示例不同:

单击Show/hide columns按钮时,列表与下表中的值混合在一起,我无法通过再次单击按钮或单击页面中的任何其他位置来使列表消失(再次,数据表页面中的示例行为正确)。

在此处输入图像描述

另外,我对使用sDom表中的不同元素进行排序感到困惑。我希望Show/hide columns按钮位于右上角而不是左上角。我也不确定如何对sDom表格中的不同元素进行排序,以便在更改列的顺序后,保存到 CSV/Excel 或隐藏某些列会给我新的表格布局,而不是原来的布局。

有任何想法吗?

用户界面

shinyUI(pageWithSidebar(

h1('Diamonds DataTable with TableTools'),
        tagList(
                  singleton(tags$head(tags$script(src='//cdnjs.cloudflare.com/ajax/libs/datatables/1.9.4/jquery.dataTables.min.js',type='text/javascript'))),
                  singleton(tags$head(tags$script(src='//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/js/TableTools.min.js',type='text/javascript'))),
                  singleton(tags$head(tags$script(src='//cdn.datatables.net/colreorder/1.1.1/js/dataTables.colReorder.min.js',type='text/javascript'))),
                  singleton(tags$head(tags$script(src='//cdn.datatables.net/colvis/1.1.0/js/dataTables.colVis.min.js',type='text/javascript'))),
                  singleton(tags$head(tags$script(src='//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/js/ZeroClipboard.min.js',type='text/javascript'))),
                  singleton(tags$head(tags$link(href='//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/css/TableTools.min.css',rel='stylesheet',type='text/css'))),
                  singleton(tags$script(HTML("if (window.innerHeight < 400) alert('Screen too small');")))
                ),
        dataTableOutput("mytable")
      )
)

服务器.R

shinyServer(function(input, output, session) {
output$mytable = renderDataTable({
          diamonds[,1:6]
      }, options = list(
               "sDom" = 'RMDCT<"clear">lfrtip',
               "oTableTools" = list(
                       "sSwfPath" = "//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/swf/copy_csv_xls.swf",
                       "aButtons" = list(
                                 "copy",
                                 "print",
                                 list("sExtends" = "collection",
                                                     "sButtonText" = "Save",
                                                     "aButtons" = c("csv","xls")
                                                )
                               )
                     )
             )
    )
})
#

此外,列排序和列重新排序存在问题:如果一个排序然后重新排序列并再次排序,则列标题会翻转。例如,按列深度排序,然后将第一列向左移动,然后再次单击标题进行排序,现在我们得到了标题深度以及来自错误列的内容。见快照:

在此处输入图像描述

4

1 回答 1

7

一些注意事项:

当前的 data.table 版本与闪亮的 atm 不兼容。我们需要1.9.4版本。然后我们还1.1.0需要colvis. 不幸的是,这指的是旧版本的 jQuery,它发出了对jQuery.browser. 所以jQuery.browser需要删除它的引用,它出现在第 856 到 859 行。sDom 属性也有点棘手,它没有出现在被替换的新 data.table 中dom。文档位于http://legacy.datatables.net/usage/options#sDomclass="cvclear"我们使用此代码段将 colVis 内容添加到 a中<"cvclear"C>。将它放在顶部是通过在sDom语句的开头对其进行排序来完成的。这可行,但是我们需要正确对齐它。通常这将通过添加来完成align = "right"到类,但因为类是通过sDom调用启动的,所以我们必须使用 HTML5 css text-align:right。我们使用tags$style.

所以上面应该允许我们使用colVis当前的闪亮。当对 data.table 进行闪亮升级时,1.10.0我们应该能够使用当前的colVis插件文件,并且希望不需要修复。

以下对我有用:

用户界面

# get the colVis js file and delete lines 
library(RCurl)
write(getURL("https://raw.githubusercontent.com/openMF/mifosx-community-apps/master/IndividualLendingGeneralJavaScript/resources/libs/DataTables-1.9.4/extras/ColVis/media/js/ColVis.js")
      , file = 'www/colvis.js')
tf <- readLines("www/colvis.js")[-c(856:859)]
write(tf, file = "www/colvis.js")
shinyUI({
  pageWithSidebar(

    h1('Diamonds DataTable with TableTools'),
    tagList(
      singleton(tags$head(tags$script(src='//cdnjs.cloudflare.com/ajax/libs/datatables/1.9.4/jquery.dataTables.min.js',type='text/javascript'))),
      singleton(tags$head(tags$script(src='//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/js/TableTools.min.js',type='text/javascript'))),
      singleton(tags$head(tags$script(src='//cdn.datatables.net/colreorder/1.1.1/js/dataTables.colReorder.min.js',type='text/javascript'))),
      singleton(tags$head(tags$script(src='colvis.js',type='text/javascript'))),
      singleton(tags$head(tags$script(src='//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/js/ZeroClipboard.min.js',type='text/javascript'))),
      singleton(tags$head(tags$link(href='//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/css/TableTools.min.css',rel='stylesheet',type='text/css'))),
      singleton(tags$head(tags$link(href='https://raw.githubusercontent.com/openMF/mifosx-community-apps/master/IndividualLendingGeneralJavaScript/resources/libs/DataTables-1.9.4/extras/ColVis/media/css/ColVis.css',rel='stylesheet',type='text/css'))),     
      singleton(tags$script(HTML("if (window.innerHeight < 400) alert('Screen too small');"))),
      singleton(tags$head(tags$link(href='https://raw.githubusercontent.com/DataTables/ColVis/18b52dfdd7255ffe96a92aadc16cadd70e3e174a/media/css/ColVis.css',rel='stylesheet',type='text/css')))  
      , tags$head(
        tags$style(HTML("
                        .cvclear{
                         text-align:right}")
        )
      )
    ),
    dataTableOutput("mytable")
  )
})

服务器.R

library(shiny)
library(ggplot2)

shinyServer(function(input, output, session) {
  output$mytable = renderDataTable({
    diamonds[,1:6]
  }, options = list(
    "sDom" = 'RMD<"cvclear"C><"clear"T>lfrtip',
    "oTableTools" = list(
      "sSwfPath" = "//cdnjs.cloudflare.com/ajax/libs/datatables-tabletools/2.1.5/swf/copy_csv_xls.swf",
      "aButtons" = list(
        "copy",
        "print",
        list("sExtends" = "collection",
             "sButtonText" = "Save",
             "aButtons" = c("csv","xls")
        )
      )
    )
  )
  )
}
)

您可以在以下位置查看应用程序:

http://128.199.255.233:3838/userApps/john/cvtestapp/

在此处输入图像描述

于 2014-07-13T00:39:25.507 回答