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
Thanks for your great work.
I just tried to display a scrollbar to dropdown list. It just working fine in FireFox. But it doesn't work in Chrome and Safari.
When I click on the scrollbar, the list gets disappear.
Could you please suggest to resolve this issue?
my Css:
ol{
height:150px;
overflow-y:scroll;
}
The text was updated successfully, but these errors were encountered:
Hi 100006,
The list disappears because the click on an item in the list triggers the blur event on the input. It seems like FireFox is not propagating the click event when the mouse hits a scrollbar in this case. So to solve this issue you'd have to check if the user is clicking on a scrollbar into the list or on an element to fade the list out again. I have no solution for that right now, but I'll check what I can do to solve this issue.
Thanks for your great work.
I just tried to display a scrollbar to dropdown list. It just working fine in FireFox. But it doesn't work in Chrome and Safari.
When I click on the scrollbar, the list gets disappear.
Could you please suggest to resolve this issue?
my Css:
ol{
height:150px;
overflow-y:scroll;
}
The text was updated successfully, but these errors were encountered: