-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add onChange property causes select box to be disabled, i.e. cannot click to show list. #85
Comments
I had a reference to bootstrap 4, once I changed all references to bootstrap 3, it started working. Strange that it only had an issue when I added the event handler. |
That is odd. I'm not 100% sure what's going on. Was there an error being thrown in the console? If so, was it in the |
No console error. As long as I left off onChange property from the element it displayed fine. I tried to inspect the styles to see what was happening but couldn't find anything in the time that I spent looking. Once I downgraded to bootstrap 3.3.7 it started working again. |
It creates 2 ul elements when is added (an empty one and the one you actually created):
This doesn't happen when the onChange event is removed. This is the code I have for the multiselect Does anybody know why this is happening? Thanks. |
My Multiselect seems to work fine until I would like to add handler then it stops working.
This works:
<Multiselect data={groupList} multiple />
This does not work:
<Multiselect onChange={this.handleChange} data={groupList} multiple />
Any ideas??
The text was updated successfully, but these errors were encountered: