在另一個post中,假設表格不是renderUI函數的一部分,則回答相同的問題。R Shiny:renderUI中的表格條件格式
在下面的示例中,我試圖調整相同的解決方案(使用JQuery),其中我想要有條件地格式化的表格屬於renderUI函數。
library(shiny)
library(datasets)
script <- "$('tbody tr td:nth-child(5)').each(function() {
var cellValue = $(this).text();
if (cellValue > 50) {
$(this).css('background-color', '#0c0');
}
else if (cellValue <= 50) {
$(this).css('background-color', '#f00');
}
})"
shinyServer(function(input, output, session) {
session$onFlushed(function() {
session$sendCustomMessage(type='jsCode', list(value = script))
})
output$view <- renderTable({
head(rock, n = 20)
})
output$Test1 <- renderUI({
list(
tags$head(tags$script(HTML('Shiny.addCustomMessageHandler("jsCode", function(message) { eval(message.value); });'))),
tableOutput("view")
)
})
})
shinyUI(fluidPage(
tabsetPanel(
tabPanel("Test1",uiOutput("Test1")),
tabPanel("Test2")
)
))
在這個小示例的有條件的格式化並不適用於表
只是完美!我希望我可以以某種方式幫助你,但是看起來我不太可能知道你不知道的東西 – Christos 2014-10-03 13:10:05
@Christos以及我沒有意識到'session $ onFlushed',直到你問你的問題,所以非常感謝;) – jdharrison 2014-10-03 13:18:38