Questions tagged [pickerinput]

37 questions
14
votes
2 answers

Is there a way to select an entire group of choices on a pickerInput from shinyWidgets?

Here is a simple reproducible example: library(shiny) library(shinyWidgets) ui <- fluidPage( pickerInput("test",choices=list("A"=c(1,2,3,4,5),"B"=c(6,7,8,9,10)),multiple=TRUE), textOutput("testOutput") ) server <- function(input, output)…
user16051136
4
votes
2 answers

How to select rows and columns and filter with DT in Shiny?

I am trying to create a Shiny app capable to select rows and columns depending on user's choice. For selecting columns I use pickerInput and for selecting rows the extension "Select" and more options that you can see in the code (I saw this post…
emr2
  • 1,436
  • 7
  • 23
4
votes
1 answer

Remove "Select All" action button from pickerInput using shinywidgets

I am using shinywidgets pickerinput to create a dropdown for the user to select their country or countries of interest with the code below. I would like to remove the ability to “Select All” i.e. the user should only be able to select a few…
Aveshen Pillay
  • 431
  • 3
  • 13
2
votes
2 answers

How to preserve the selection order of a pickerInput if multiple selections are allowed?

Let's take my code as an example. If I use selectInput option where I can pick multiple choices, the first choice that I picked would be listed first, second choice would be listed second, etc. However, if I use pickerInput option where I would pick…
Sunny League
  • 139
  • 1
  • 8
2
votes
1 answer

Highlighting a pickerInput using 'introjs' in R shiny

I would like to write an introduction tour using the function introjs for my R shiny app where one of the elements which gets highlighted is a pickerInput. But I am having troubles with the correct highlighting. Here's an…
Rejane
  • 23
  • 4
2
votes
1 answer

How to get arrow on the right side to the left in shinyWidgets pickerInput?

How can i get the arrow that opens the dropdown-menu from the right side to the left in shinyWidgets::pickerInput? library(shiny) library(shinyWidgets) ui <- fluidPage( pickerInput( inputId = "name", label = "Choose option", …
Philipp Schulz
  • 131
  • 1
  • 8
2
votes
0 answers

How to change on hover background color in pickerInput?

I need to change the background color with which the pickerInput highlights the on hover option. How can I achieve it?. Below is a minimal example, I have tried changing the style but I can't get it library(shiny) shinyApp( ui = basicPage( …
Jairodmed
  • 21
  • 2
2
votes
0 answers

Is there a way to copy and paste values inside pickerInput widget in R Shiny?

As a minimal example # Basic usage library("shiny") library(shinyWidgets) ui <- fluidPage( pickerInput( inputId = "somevalue", label = "A label", choices = c("apple", "orange", "mango", "pear"), options = list( `actions-box` =…
user324810
  • 597
  • 8
  • 20
2
votes
1 answer

pickerInput from Shiny doesn't work properly when you make changes in your dataframe

I am creating an app where you can select the columns that you want to see/show and do the logarithm or sqrt to the entire dataframe. The first option (selection) is running through pickerInput and the second with checkboxInputs. In order to show…
emr2
  • 1,436
  • 7
  • 23
2
votes
1 answer

How to change bold font size to the headings of groups in pickerInput() of shinyWidgets package?

I'm building an RShiny-App and now I'm formatting some parts, so they are more readable. I use pickerInput() and want to make the headingsDE and AT bold. I'm using the following R-code: pickerInput(inputId = "ma3DVariables", label = "Select 2…
MikiK
  • 398
  • 6
  • 19
1
vote
2 answers

Updating pickerInput based on radiobutton

I want to be able to update the selection available in the pickerInput based upon the selection made in the radio button input. In the example below, I want the radio button "A", to give a pickerInput list of mtcars$cyl, whilst a picker input of "B"…
awz1
  • 419
  • 2
  • 12
1
vote
2 answers

How to change the font size of a pickerinput in Shiny?

I am trying to change (reduce) the font size of a pickerinput widget in shiny with no luck. I checked the other solutions online which helped changing the size of choice options. But I need to change both the font size shown in the…
Farhad
  • 151
  • 7
1
vote
1 answer

PickerInput subcategories with only one element

I've been trying to make a pickerInput from package ShinyWidgets with subcategories. library(shiny) library(shinyWidgets) ui <- fluidPage( tags$h2("Select / Deselect all"), pickerInput( inputId = "p1", label = "Select all option", …
K.Hua
  • 769
  • 4
  • 20
1
vote
2 answers

R shiny pickerinput chiocesOpt

This is a simple question: I'm having a hard time finding a documentation of what can go into the choicesOpt argument of pickerInput. I've tried Google, Stackoverflow and most of the doc-sites I know and tried looking in the source of the package…
sedsiv
  • 531
  • 1
  • 3
  • 15
1
vote
1 answer

(AD) Remove "Select All" action button from pickerInput using shinywidgets

Continuing the discussion mentioned here: Remove "Select All" action button from pickerInput using shinywidgets OP had this code and tries to remove one of the select/deselect buttons: pickerInput(inputId = "country_select_list", label = "Select…
1
2 3