1
我使用的庫shinythemes和創建與主題的UI「團結」shinythemes不踢
出於某種原因,我無法看到應用到我的閃亮的UI這個主題,下面是我的UI代碼。
ui = shinyUI(fluidPage(theme=shinytheme("united"),
title = 'Research Productivity',
tabsetPanel(
tabPanel("Test",
fluidRow(
column(width = 2,
h4("Functions"),
wellPanel(
#radioButtons("editingCol0", "Rownames editing", choices = c("Enable" = TRUE, "Disable" = FALSE), selected = FALSE)
)
),
column(width = 12,
h4("test_data1"),
d3tfOutput('test_data1', height = "auto")
)
# ),
# column(width = 5,
#
# h4("test_data1 after filtering and editing"),
# tableOutput("filteredtest_data1")
# ) # column
)) # fluidRow
)))
有關解決此問題的任何反饋意見,非常感謝。
你是絕對正確的。它的工作現在。 –