在我闪亮的应用程序中,我显示了一个带有可扩展行的表(可反应)。我想更改某些单词的背景颜色,因此我使用 html spans。它适用于常规行中的文本,在可扩展行中,但仅显示纯 html 代码。
我html = TRUE
为两列设置但未正确显示。我如何使它工作?
应用程序.R
library(shiny)
library(htmltools)
library(reactable)
ui <- fluidPage(
reactableOutput("table")
)
server <- function(input, output) {
output$table <- renderReactable({
df = data.frame("title" = c("This is the <span style='background-color:yellow;'>Title</span>", "This is a longer Title"),
"abstract" = c("This is the <span style='background-color:yellow;'>abstract</span>", "This is an even longer abstract"))
reactable(
df,
columns = list(
abstract = colDef(show = F, html = TRUE),
title = colDef( html = TRUE)
),
details = function(index) {
htmltools::div(style= "background-color:white",
htmltools::tags$div(style= "background-color:#eee; padding: .9em; border-color: #ffe;", df[index, "abstract"])
)
}
)
})
}