-
Notifications
You must be signed in to change notification settings - Fork 64
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
scroll not working using key up/down #57
Comments
Hey @max-SS, not sure I never had very long lists :) I suspect that scrolling a list might require setting the focus to the list item (which might pose a problem). Can you set up a plunkr/jsbin to demonstrate the issue? |
yes. I share here a fork of an example, I added the displacement |
I see the problem. As I suspected it wont be possible because scrolling require settings focus to the selected item - this conflicts with how the directive work. In order for the directive to be "global" we trigger attach on focus and detach on blur.Once we move the focus to the selected element a blur event will be triggered on the input element and a detach event will follow. |
I am also facing same issues could u please help me to fix |
Hey, see the explination above about the scrolling "challenge". I think that if you have very long lists you should look into ways of making it smaller rather then tackle the scrolling issue. For example you can require more letters before making a suggestion, sort results by relevance and limit results etc. |
Hello I wonder if the option of using the arrow keys up/down in case there scroll, are supported to move. Why me not working me...
The text was updated successfully, but these errors were encountered: