-
Notifications
You must be signed in to change notification settings - Fork 229
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
onOptionSelected does not trigger on click #205
Comments
FYI HubSpot#6 has a quick workaround that uses |
I had this issue, but in my case, I was trying to hide results onBlur. The blur was firing before the selection was made. Just putting that here incase it helps you or anyone else |
@zdhickman is there anyway to get an onlick or onmousedown event right now? I tried both and neither work? I'm using css to expand/contract the search box on focus, which isn't allowing me to use onclick to send the typeahead slection |
I had this issue, I fixed with a setTimeout while they patch a better solution. onBlur(e) {
e.stopPropagation();
e.preventDefault();
setTimeout(() => {
if (this.refs.typeahead.state['showResults']) this.refs.typeahead.setState({showResults: false})
}, 150);
} |
2.0.0-alpha.5
Only keyboard event works
The text was updated successfully, but these errors were encountered: