Я работаю над базовым шаблоном Shiny UI, в котором пользователь должен выбрать определенную кнопку, чтобы предоставить приложение для ввода.Прямо сейчас я использую conditionalPanel (), но вместо того, чтобы кнопки ввода полностью исчезали, возможно ли их выделять серым цветом?
Вот следующий код:
library(shiny)
library(shinyjs)
ui<-fluidPage(
headerPanel("Title"),
sidebarPanel(
radioButtons("toggle", "Some Buttons",
choices = list("Choice 1" = 1,
"Choice 2" = 2),
selected = "Choice 2")),
conditionalPanel(
condition = "input.toggle % 2 == 0",
sidebarPanel(radioButtons("otherButtons","Buttons",
choices = list("Choice 1"=1,
"Choice 2"=2)),
radioButtons("moreButtons","Buttons",
choices = list("Choice 1"= 1,
"Choice 2" = 2))
),
"Some Text"
)
)
server<-function(input,output,session){
}
shinyApp(ui,server)