【发布时间】:2019-02-07 16:05:56
【问题描述】:
我正在处理这个issue。 我尝试了一些 css 解决方案,但我没有设法解决它。
我最终决定悬停每个单元格以显示行名(第一列)和列名(标题)。
shinyApp(
ui = fluidPage(
DT::dataTableOutput("mtcarsTable")
),
server = function(input, output) {
output$mtcarsTable <- DT::renderDataTable({
DT::datatable(datasets::mtcars[,1:3],
extensions = c('FixedColumns'), selection=list(mode="single", target="cell"), class = 'cell-border stripe', escape = F ,
options = list(rowCallback = JS(
"function(nRow, aData, iDisplayIndex, iDisplayIndexFull) {",
"var full_text = aData[0] + ','+ aData[1];",
"var headers = Array.prototype.slice.apply(document.querySelectorAll('th'));",
"$('td', nRow).each(function(i) {
this.title = [aData[0], headers[i].innerText].filter(Boolean).join(', ');
});",
"}")
)
)
})
}
)
不幸的是,这似乎与 formatStyle 不兼容:
shinyApp(
ui = fluidPage(
DT::dataTableOutput("mtcarsTable")
),
server = function(input, output) {
output$mtcarsTable <- DT::renderDataTable({
DT::datatable(datasets::mtcars[,1:3],
extensions = c('FixedColumns'), selection=list(mode="single", target="cell"), class = 'cell-border stripe', escape = F ,
options = list(rowCallback = JS(
"function(nRow, aData, iDisplayIndex, iDisplayIndexFull) {",
"var full_text = aData[0] + ','+ aData[1];",
"var headers = Array.prototype.slice.apply(document.querySelectorAll('th'));",
"$('td', nRow).each(function(i) {
this.title = [aData[0], headers[i].innerText].filter(Boolean).join(', ');
});",
"}")
)
) %>%
formatStyle(columns = 1, backgroundColor = styleInterval(c(19,20,22), c('red','green','yellow', 'black')))
})
}
)
当我执行该额外步骤时,我既没有收到错误,也没有呈现数据表。
我正在寻找:能够混合使用 rowCalllback 和 Styleinterval,或者一般来说,一种更好的解决方案,让用户知道他在大型数据表上的确切位置。
提前谢谢你。
【问题讨论】:
标签: javascript r shiny dt