We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
preconditions:
Then the menu is closed when you try to click with the mouse cursor on the browser scroll wheel (at the ul element).
The cause is the @HostListener('document:focusin', ['$event']) in https://github.com/optimistex/ngx-select-ex/blob/master/src/app/lib/ngx-select/ngx-select.component.ts#L294 which closes the dropdown
A workaround is to add a focusin listener to the select options container (appendTo element) and prevent event propagation.
The text was updated successfully, but these errors were encountered:
@hc42 Thanks for the report! Could you please prepare a Pull Request with a fix. So, I'd review and merge/release if it's possible.
Sorry, something went wrong.
No branches or pull requests
Hi,
preconditions:
Then the menu is closed when you try to click with the mouse cursor on the browser scroll wheel (at the ul element).
The cause is the @HostListener('document:focusin', ['$event'])
in https://github.com/optimistex/ngx-select-ex/blob/master/src/app/lib/ngx-select/ngx-select.component.ts#L294
which closes the dropdown
A workaround is to add a focusin listener to the select options container (appendTo element) and prevent event propagation.
The text was updated successfully, but these errors were encountered: