You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On mobile (Android 9), I'm experiencing two different issues.
When I click on the react-select input, the keyboard is opened automatically (and sadly, can't do anything about it yet, see prevent keyboard from opening automaticaly #3526) and I have to close it to see the available choices.
When I click on one of the choices, the menu gets closed (even though closeMenuOnSelect is false), and the onMenuClose isn't triggered either
This is particularly blocking when relying on onMenuClose to sync the selected choices with the state. In my case, I don't rely on the onChange event because I'm building a chatbot and I don't want to display the next message until the user is done selecting all its choices, therefore, I rely on onMenuClose event, but it doesn't perform well on mobile.
The only solution I can think of atm is to detect whether I'm running on mobile (great) and rely on onChange event when on mobile.
The text was updated successfully, but these errors were encountered:
On mobile (Android 9), I'm experiencing two different issues.
closeMenuOnSelect
is false), and theonMenuClose
isn't triggered eitherThis is particularly blocking when relying on
onMenuClose
to sync the selected choices with the state. In my case, I don't rely on theonChange
event because I'm building a chatbot and I don't want to display the next message until the user is done selecting all its choices, therefore, I rely ononMenuClose
event, but it doesn't perform well on mobile.The only solution I can think of atm is to detect whether I'm running on mobile (great) and rely on onChange event when on mobile.
The text was updated successfully, but these errors were encountered: