Я сделал два изменения, и это работает почти так, как вы хотите:
- Инициализировать радиокнопки как отключенные
- Передать только один true / false в if
library(shiny)
library(shinyjs)
runApp(shinyApp(
ui = fluidPage(
shinyjs::useShinyjs(),
selectizeInput(inputId = "aaa", label = NULL, choices = c('a', 'b', 'c', 'd', 'e', 'f'), selected = NULL, width = '90%',
options = list(placeholder = 'Get',
onInitialize = I('function() { this.setValue(""); }'), maxItems = 5)),
shinyjs::disabled( # buttons disable at the launching
radioButtons("bbb", label = NULL, inline = TRUE, width = "100%", selected = 95,
choiceValues = list(1, 2, 3),
choiceNames = list(
div(style = "font-size:24px;", "1%"),
div(style = "font-size:24px;", "2%"),
div(style = "font-size:24px;", "3%")
))
)
),
server = function(input, output, session) {
observeEvent(input$aaa, {
# any(grepl(...)) returns TRUE if one of them is TRUE
# just grepl(..) would return a vector of TRUE and FALSE
if(any(grepl("a", input$aaa))){
shinyjs::enable("bbb")
}else{
shinyjs::disable("bbb")
}
})
}
))
Я не знаю, почему кнопки продолжают включаться, когда ничего не выбрано после выбора "a"
РЕДАКТИРОВАТЬ: похоже, что наблюдаемое событие не реагирует, когда вход имеет значение, тогда НЕДЕЙСТВИТЕЛЕН. Вместо того, чтобы использовать проблему, используйте наблюдение ().
library(shiny)
library(shinyjs)
runApp(shinyApp(
ui = fluidPage(
shinyjs::useShinyjs(),
selectizeInput(inputId = "aaa", label = NULL, choices = c('a', 'b', 'c', 'd', 'e', 'f'), selected = NULL, width = '90%',
options = list(placeholder = 'Get',
onInitialize = I('function() { this.setValue(""); }'), maxItems = 5)),
shinyjs::disabled(
radioButtons("bbb", label = NULL, inline = TRUE, width = "100%", selected = 95,
choiceValues = list(1, 2, 3),
choiceNames = list(
div(style = "font-size:24px;", "1%"),
div(style = "font-size:24px;", "2%"),
div(style = "font-size:24px;", "3%")
))
)
),
server = function(input, output, session) {
observe({
if(any(grepl("a", input$aaa))){
shinyjs::enable("bbb")
}else{
shinyjs::disable("bbb")
}
}
)
}
))