Skip to content
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

Cannot scroll down with arrow keys if long list dropdown #128

Open
aaron170 opened this issue Aug 24, 2016 · 0 comments
Open

Cannot scroll down with arrow keys if long list dropdown #128

aaron170 opened this issue Aug 24, 2016 · 0 comments

Comments

@aaron170
Copy link

aaron170 commented Aug 24, 2016

When we have long list in the dropdown and if we limit the height of the dropdown say around 300px, then we cannot scroll down with the arrow keydown event. The selection keeps going down but does not scroll the list in the display area.
After Edit in the CSS file:
.angucomplete-dropdown {
border-color: #ececec;
border-width: 1px;
border-style: solid;
border-radius: 2px;
width: 250px;
padding: 6px;
cursor: pointer;
z-index: 9999;
position: absolute;
margin-top: -6px;
background-color: #ffffff;
/* New added */
height:300px;
overflow: auto;
overflow-x: hidden;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant