我的CSS技能非常有限,但是假设以下示例:

  sketch = htmltools::withTags(table(
     class = 'display',
     thead(
        tr(
           th(rowspan = 2, 'Species'),
           th(colspan = 2, 'Sepal'),
           th(colspan = 2, 'Petal')
        ),
        tr(
           lapply(rep(c('Length', 'Width'), 2), th)
        )
     )
  ))
  datatable(head(iris, 10),
     container = sketch, options = list(
     initComplete = JS(
        "function(settings, json) {",
        "$(this.api().table().header()).css({'background-color': '#000', 'color': '#fff'});",
        "}")
  ))


我如何将前两个列标题的颜色编码更改为蓝色,以使列标题Sepal,LengthSepal,Width的两行均为蓝色,但将以下结构Petal,LengthPetal,Width保留为另一种颜色

在Stephane最初回答之后,我添加了一个示例。

css - DT Shiny不同的自定义列标题-LMLPHP

最佳答案

您可以使用选项headerCallback

datatable(head(iris, 10),
          container = sketch, options = list(
            headerCallback = JS(
              "function( thead, data, start, end, display ) {
      $(thead).closest('thead').find('th').eq(3).css('color', 'red');
      $(thead).closest('thead').find('th').eq(4).css('color', 'red');
      $(thead).closest('thead').find('th').eq(5).css('color', 'blue');
      $(thead).closest('thead').find('th').eq(6).css('color', 'blue');
              }"
            ),
            initComplete = JS(
              "function(settings, json) {",
              "$(this.api().table().header()).css({'background-color': '#000', 'color': '#fff'});",
              "}")
          ))


标头包含多行时,需要.closest('thead')

是你想要的吗?我不确定我是否正确理解了您的要求。

css - DT Shiny不同的自定义列标题-LMLPHP



更改背景颜色:

library(DT)

sketch = htmltools::withTags(table(
  class = 'display',
  thead(
    tr(
      th(rowspan = 2, 'Species'),
      th(colspan = 2, 'Sepal'),
      th(colspan = 2, 'Petal')
    ),
    tr(
      lapply(rep(c('Length', 'Width'), 2), th)
    )
  )
))

headerCallback <- "function( thead, data, start, end, display ) {
  $(thead).closest('thead').find('th').eq(0).css('background-color', 'green');
  $(thead).closest('thead').find('th').eq(1).css('background-color', 'red');
  $(thead).closest('thead').find('th').eq(2).css('background-color', 'blue');
  $(thead).closest('thead').find('th').eq(3).css('background-color', 'red');
  $(thead).closest('thead').find('th').eq(4).css('background-color', 'red');
  $(thead).closest('thead').find('th').eq(5).css('background-color', 'blue');
  $(thead).closest('thead').find('th').eq(6).css('background-color', 'blue');
}"

datatable(head(iris, 10),
          container = sketch, options = list(
            headerCallback = JS(headerCallback)
          )
)


css - DT Shiny不同的自定义列标题-LMLPHP

关于css - DT Shiny不同的自定义列标题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52151312/

10-12 22:39