微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

AD使用shinywidgets从pickerInput中删除“全选”操作按钮

如何解决AD使用shinywidgets从pickerInput中删除“全选”操作按钮

继续这里提到的讨论:

Remove "Select All" action button from pickerInput using shinywidgets

OP 有此代码并尝试删除选择/取消选择按钮之一:

pickerInput(inputId = "country_select_list",label = "Select countries",choices = country_list,multiple = TRUE,options = pickerOptions(actionsBox = TRUE))

答案是使用 CSS:

.bs-select-all {
  display: none;
}

这部分代码到底应该放在哪里才能让全选按钮消失?

解决方法

试试这个

library(gapminder)

my_css <- "
.bs-select-all {
  display: none;
}
.bs-deselect-all {
  width: 100%;
}
"

df <- gapminder
country_list <- unique(df$country)

ui <- fluidPage(
  tags$head(tags$style(HTML(my_css))),pickerInput(
    inputId = "country_list",label = "Select countries",choices = as.character(country_list),multiple = TRUE,options = pickerOptions(actionsBox = TRUE)
   
  )
)

server <- function(input,output) {}

shinyApp(ui,server)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。