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
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
Hi,
we're using custom scrollable container and ui-select inside. It looks like calculateDropdownPos leads to flickering the scrollbar if position set to 'auto' and long select is placed at the bottom of form.
I did some quick search and change function a bit: except just dropdown[0].style.opacity = 0; ... dropdown[0].style.opacity = 1; I added dropdown[0].style.position = 'fixed'; ... dropdown[0].style.position = 'absolute'; to move dropdown out of page flow temporary.
It solves the problem. Unfortunately I can't make PR due to some reasons, but I think this is not very big change.
The text was updated successfully, but these errors were encountered:
Fix for situation when item goes out of viewport appears flicker before changing dropdown positioning. Here is fixing PR: #1936
Plunk of a fix: http://plnkr.co/edit/QxycwbMMYUpNoTLiubEg
Dexmaster
added a commit
to Dexmaster/ui-select
that referenced
this issue
Mar 9, 2017
Hi,
we're using custom scrollable container and ui-select inside. It looks like
calculateDropdownPos
leads to flickering the scrollbar if position set to 'auto' and long select is placed at the bottom of form.I did some quick search and change function a bit: except just
dropdown[0].style.opacity = 0;
...dropdown[0].style.opacity = 1;
I addeddropdown[0].style.position = 'fixed';
...dropdown[0].style.position = 'absolute';
to move dropdown out of page flow temporary.It solves the problem. Unfortunately I can't make PR due to some reasons, but I think this is not very big change.
The text was updated successfully, but these errors were encountered: