Autocomplete menu position issue when positioned to the right
$("input#test").width(100).autocomplete({ position: { my: "right top", at: "right bottom" }, source: ["This is a very long option", "This was a very long option"] });
While typing "this i" the menu position isn't being repositioned to the right. I guess this is because the menu is positioned using css "left", and when the width changes the absolute "right" changes which causes a "jump" is the menu position.
Change History (3)
Component: |
unfiled →
ui.autocomplete
|
Milestone: |
1.5 →
1.9
|
Priority: |
undecided →
minor
|
Resolution: |
→ fixed
|
Status: |
new →
closed
|
Autocomplete: Re-position menu after resizing, not before. Fixes #6648 - Autocomplete menu position issue when positioned to the right.