You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
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;
}
The text was updated successfully, but these errors were encountered: