Reputation: 119
I am making a ASP.net core application with bootstrap 4, i want to use the jquery UI autocomplete function to autocomplete using a database. i got it all working but the autocomplete is showing up at the top left corner of my screen for some reason?
This is my Js snippet:
$(document).ready(function () {
$("#Machine").autocomplete({
source: "/repair/Search",
});
});
i want it to appear just below the textfield like it is supposed to be. ive tried .position tags in the code but i cant get it to work.
Can it have anything to do with using bootstrap?
Upvotes: 1
Views: 1048
Reputation: 119
Changing to jquery 1.12.4 and jquery ui 1.12.1 fixed the issue for some reason
Upvotes: 2