R shiny multiple selection with scroll bar

I use R shiny for web application development. Now I want to make several options (and not just one) from several options. I tried checkboxGroupInput, but it will give a long list. What function can create such things? Thank!

enter image description here

+4
source share
1 answer

You can use selectInputwith an argument multiple = TRUE, as shown in the documentation .

+2
source

Source: https://habr.com/ru/post/1533982/


All Articles