Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCombining pickers: using Live search and Multiple together #142
Comments
|
Hey @owczarz-eca! I'm running into this exact issue as well. After searching and selecting an option, the dropdown menu is "reset" thus ignoring any text in the search box. Did you find a resolution to this? |
|
I ran into the same problem and played a bit with the source code. @pvictor What is the |
|
Same problem. Suggested by @trafficonese solution dosen't work for me. R 3.3.3 ShinyWidgets 0.4.9 |
|
Hi, So this should work now after re-installing from GitHub. @yurasik2000 , if modifying picker JavaScript bindings, you have to run this code after to compile all bindings : shinyWidgets/inst/assets/tools.R Line 35 in 6b0034c |
Assuming I have application like this (adjusted example from issue #7):
I would like to combine live search and multiple selection. For example, I am interested in some countries that contain letter G (but only Germany and Belgium). Therefore, I search for G in the search box and I want to pick two countries (Germany and Belgium). Once I click on Germany the search menu expands and renders all available choices , hence disregarding the search input G. Is there a way to fix it? The same logic applies to unselecting choices, I am able to
select allcountries with G but when I try to unselect UK the list expands again.