Вы можете просто обновить его, мы также можем добавить всплывающее окно, указывающее, что по крайней мере 1 элемент должен быть выбран
library("shiny")
library("shinyWidgets")
mychoices <- c("Apple", "Mango", "Pear", "Orange")
ui <- fluidPage(
column(
width = 4,
pickerInput(inputId = "fruit",
label = "Fruits",
choices = mychoices,
options = list(`actions-box` = T, `none-selected-text` = "Please make a selection!",selected = mychoices[1]),
multiple = T)
),
column(4,textOutput("res"))
)
server <- function(input, output,session) {
data <- eventReactive(input$fruit,{
if(is.null(input$fruit)){
updatePickerInput(session,"fruit",choices = mychoices,selected = mychoices[1])
showNotification("At least 1 should be selected", duration = 2,type = c("error"))
}
input$fruit
},ignoreNULL = F)
output$res <- renderPrint({
req(data())
data()
})
}
shinyApp(ui = ui, server = server)