I have a display problem in the jQuery autocomplete inside a modal dialog bootstrap.
When I mouse scroll, the results do not remain attached to the input.
Is
just try adding this:
.ui-autocomplete { z-index: 215000000 !important; }
Just make sure you give a high value to the property and DO ADD
!important
It really matters. The latter will tell your browser to execute this rule first, before any other of the same class. Hope it will help