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
Describe the bug When trying to use tabindex and set on the component like this:
<ng-select tabindex="1"></ng-select>
Then the tabindex is set both on the input field and the component which makes it show when you tab
Reproducbile example Example which reproduces described behaviour
To Reproduce Steps to reproduce the behavior (if example is not provided):
Expected behavior It should only focus the input
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information): Not tested on a smart phone (can you tab on a smart phone)
Additional context You might resolve this by renaming the tabindex input on the parent to tabIndex.
tabindex
tabIndex
A hack until this is resolved is to use this:
<ng-select tabindex="1" [attr.tabindex]="-1"></ng-select>
This sets the tabindex on the child and then overwrites the components tabindex on init with the -1
The text was updated successfully, but these errors were encountered:
112f6a2
No branches or pull requests
Describe the bug
When trying to use tabindex and set on the component like this:
Then the tabindex is set both on the input field and the component which makes it show when you tab
Reproducbile example
Example which reproduces described behaviour
To Reproduce
Steps to reproduce the behavior (if example is not provided):
Expected behavior
It should only focus the input
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
Not tested on a smart phone (can you tab on a smart phone)
Additional context
You might resolve this by renaming the
tabindex
input on the parent totabIndex
.A hack until this is resolved is to use this:
This sets the tabindex on the child and then overwrites the components tabindex on init with the -1
The text was updated successfully, but these errors were encountered: