数据表:删除所有水平边框

时间:2018-09-09 21:58:52

标签: r dt

如何将所有水平边框都删除为仅偶数/奇数阴影?

enter image description here

https://datatables.net/examples/styling/stripe.html

enter image description here

这不起作用。

table.dataTable.row-border tbody th, 
table.dataTable.row-border tbody td, 
table.dataTable.display tbody th, 
table.dataTable.display tbody td {
  border: none;
}

我也想删除顶部和底部黑色边框。这似乎没有任何作用。

table.dataTable thead th {
  border-bottom: 0;
  border-style: none;
}
table.dataTable tfoot th {
  border-top: 0;
  border-style: none;
}
table.dataTable .no-footer {
  border-bottom: 0;
}

1 个答案:

答案 0 :(得分:3)

您可以这样删除顶部和底部边框:

datatable(head(iris), 
          options=list(headerCallback = JS(
            "function( thead, data, start, end, display ) {
            $(thead).closest('thead').find('th').each(function(){
              $(this).css('color', 'red').css('border','none');
            });
            }"
            ),
            initComplete = JS(
            "function(settings) {
            var table = settings.oInstance.api(); 
            $(table.table().node()).removeClass('no-footer');
            }")))