Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
106 views

I am trying to combine Django Filters (DF) with Django Autocomplete Light (DAL). I also want to chain the filter on a few fields in my model. For instance, before applying the DF to my model, I'd like ...
AJJ's user avatar
  • 55
-2 votes
1 answer
86 views

I have searched everything and everywhere I know.. Do you have any library that: Uses shadcn Is react Can search Can have multiple items saved (comma separated or something) Uses fetch or whatever to ...
Korovjov's user avatar
  • 561
0 votes
0 answers
48 views

Apologies in advance if the question sounds confusing. The code is complex so I'm trying to balance clarity without providing too many unnecessary details. I'm using jQuery UI Autocomplete widget with ...
g-ulrich's user avatar
0 votes
1 answer
84 views

A Bootstrap Modal is open when I click on #add. I would like to show autocomplete on a input box in Modal. My code is like below. $("#add").on("click", function () { var selector ...
abu abu's user avatar
  • 7,102
0 votes
1 answer
27 views

I have a table containing a row of textboxes - Category, Manufacturer and Model. When the user types a value in to the Model field, I want to show an autocomplete box showing similar matches to what ...
Gavin Coates's user avatar
  • 1,435
0 votes
1 answer
70 views

This works fine: $("#Term").autocomplete({ source: '/ws/words.json?lang=en' }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script ...
Kris Van Bruwaene's user avatar
0 votes
0 answers
15 views

I have an input text with id school_name field that I would like to apply jQuery autocomplete on. I managed to make it work making an ajax call and fetch the data and show them as options but ...
pliroforiki's user avatar
0 votes
2 answers
156 views

person! I really need help, I'm trying to do an Autocomplete with multiple inputs in ASP.NET Core, but at the moment I'm only able to return one value. When I enter the person's name I can bind the ...
Tiago Procópio's user avatar
0 votes
0 answers
52 views

I have a Jquery UI Autocomplete, defined like so: $('.postcode-lookup').autocomplete({ source: function(request, response) { $.ajax({ url: '/...
Josh Dredge's user avatar
1 vote
1 answer
75 views

In search box the ui-autocomplete dropdown has stopped working all of sudden. Server is returning the queryset but jquery is not executing response section. My html form: <form class="d-...
user3369417's user avatar
0 votes
0 answers
69 views

I have a search bar that should be visible in all my pages in django, however the autocomplete is not working. my base.html has the following: <link rel="stylesheet" href="//code....
Louvilla Limpin's user avatar
0 votes
0 answers
97 views

I have a list like the scrollable result example. Link: https://jqueryui.com/autocomplete/#maxheight In this example, when we place the mouse on the last option, the scroll bar automatically descends....
Tiago Dantas's user avatar
0 votes
0 answers
16 views

I have written a function which implements autocomplete on the input field. In this function I am making an ajax call to get the data and then binding it to the input field and every thing is working ...
Obraine's user avatar
  • 409
0 votes
1 answer
52 views

I work on an ASP.NET Web API. I face issue when I call the Web API using a jQuery Ajax request. My issue is autocomplete result display separated by slashes: Id - Name - Designation but expected ...
ahmed abdelaziz's user avatar
1 vote
1 answer
115 views

I want to add a custom div at the end of jQuery-autocomplete list I tried adding that custom div under ul. autoCompleteDiv.data("ui-autocomplete")._renderMenu = function (ul: JQuery, items: ...
Chirag Goyal's user avatar
0 votes
1 answer
40 views

Our website provides a taxi booking form for users to book taxis to or from Amsterdam Schiphol Airport. The issue lies in the unusual behavior of our two search boxes used for picking up and dropping ...
Ayad's user avatar
  • 1
0 votes
1 answer
20 views

My Jquery Autocomplete using the sample code from JQuery website work with below data from a url [ "shirt", "shirt two" ] But wont work with below data [ data from a url ]...
Bineesh Kumar's user avatar
0 votes
1 answer
462 views

I am trying to achieve autocomplete feature that shows the matching data from db table when user inputs 2 letters in @html.textboxfor in razor page but keep getting 500 error every time I type input ...
smbbb's user avatar
  • 123
0 votes
1 answer
759 views

I am trying to display a jquery ui autocomplete widget in a bootstrap 5 modal and it is not working. I already have the api endpoint written that is returning the data the widget is expecting (list of ...
QuantumPhysGuy's user avatar
1 vote
1 answer
576 views

I'm trying to apply an autoComplete feature on my web app but I can't seem to find a way to make the options to adjust to the longest content. the only thing I can do is to make it into a fixed length ...
dapidmini's user avatar
  • 1,643
-3 votes
2 answers
776 views

In my web application, I have added a text box and I wanted to search for data and show it while typing on it. So I followed this video and added the same to my project. https://www.youtube.com/watch?...
Dev Beginner 's user avatar
0 votes
1 answer
36 views

I wish to do the same thing as this tutorial here but instead of populate every field separately, I wish when I select the first name, the other fields autofill according to the selected value of ...
Nll's user avatar
  • 862
0 votes
0 answers
20 views

I need some help on an autocomplete, when I do a search everything works fine if the item is in the list, I get the ID and return it in the dedicated input. But is there a way to return a code 9998 ...
FHD's user avatar
  • 1
0 votes
1 answer
53 views

I want the autocomplete to open the drodown automatically on input focus. Here is my example: $(".tag-input").autocomplete({ source: tagInputOptions, sortResults: ...
gardarvalur's user avatar
  • 1,585
0 votes
1 answer
889 views

I would like to get jquery Autocomplete feature inside a sweetalert2 popup Swal.fire({ title: 'Get Users', html: '<input type="text" id="name" class="swal2-input" ...
KROM's user avatar
  • 3
0 votes
0 answers
39 views

I am trying to implement an autocomplete functionality in django application. My view is as following @require_POST @login_required def search_players(request): search_query = request.POST.get('...
Neel's user avatar
  • 625
0 votes
0 answers
24 views

I am using the combobox seen here. https://jqueryui.com/autocomplete/#combobox I need to be able to programmatically select the value, but can't seem to make anything work. If I do something like this ...
nooneinparticular's user avatar
-1 votes
1 answer
303 views

I need to remove the partial postcode (in the red box) from the suggestions dropdown on autocomplete, so that users can only select a full postcode. How do I achieve this or does anyone have a better ...
Drizzt's user avatar
  • 11
1 vote
3 answers
2k views

I am very new to web development and specifically using Django Framework. I am trying to find a clean, efficient and non external package dependant implementation for an autocomplete-datalist form ...
OldSchoolProgrammer's user avatar
1 vote
0 answers
103 views

I am looking to implement autocomplete on a search field which is in the header of each webpage (layout.html). The search bar searches on a model field named 'Title'. While the search itself is ...
johnperc's user avatar
0 votes
1 answer
70 views

I have in Django a view with an autocomplete search. In the logic of the script, I search for city name or I search by zip code. In the select form it works. Is it possible to display both at the ...
Zembla's user avatar
  • 381
0 votes
0 answers
46 views

I'm migrating some old code to a new site and there are lots of JS libraries being used so trying to pinpoint why this isn't working has been difficult. In short within a function I need this code to ...
ABCSU's user avatar
  • 1
0 votes
1 answer
40 views

Im adding enhancements to an existing rails 5.1 app. I need to add autocomplete with data retrieved from a Mysql database. The application has Jquery, simple_form, and materialize all included. My ...
Jeff S's user avatar
  • 21
0 votes
1 answer
273 views

I have a combo box that enables the autocomplete function. The project that I am working on currently uses the same code that is mentioned in the answer. I have modified the code to select the value ...
Rasik's user avatar
  • 2,529
0 votes
1 answer
297 views

I am trying to implement Jquery Autocomplete. I'm using the tutorial example from their site but so far it is returning all of my results regardless of what I enter for the search <script> $(...
SkylarP's user avatar
  • 41
0 votes
1 answer
97 views

Please bear in mind that I'm super new to Javascript and I'm still learning the basic concepts. I'm working adapting the autocomplete function (using Devbridge autocomplete): https://github.com/...
Katherine99's user avatar
0 votes
1 answer
365 views

My autocomplete is showing behind the bootstrap modal, which makes it impossible to pick a choice. I have seen different post suggesting something like this, but it didnt work for me. .ui-autocomplete ...
PhilM's user avatar
  • 415
0 votes
0 answers
296 views

I am trying to recreate this one from jquery https://jqueryui.com/autocomplete/#multiple This function allows you to select a multiple data using textbox that acts like a dropdown. I am now recreating ...
Ulquiorra Schiffer's user avatar
0 votes
1 answer
130 views

I am trying to create a text dropdown with autocomplete feature to filter the fields.But it's not working properly. The custom filter search function is also calling the previous filter value.Code ...
Shivansh's user avatar
0 votes
1 answer
127 views

I have a function that works in my JQuery autocomplete. The function itself seems to work, but when selecting from autocomplete list, the line to empty the input is not working. I re-created the issue ...
charlie's user avatar
  • 481
3 votes
1 answer
929 views

This is What I have : I have a text box input element as below for loading cities autoloaded and a hidden field to list its ids: <label class="col-sm-2 control-label" for="city_disp&...
SAYUJ RAGHAVAN's user avatar
4 votes
0 answers
399 views

Hi I am using Material UI version 0.20.0 in my project. I am using the Autocomplete component. When I search the value and select the value using mouse its gets selected but I when I navigate the ...
Badal Sherpa's user avatar
1 vote
0 answers
140 views

I have a table with 4 rows and then 2 buttons where I can clone the row or delete an added row. In 3 of the 4 rows, I am using a jquery autocomplete widget with a combobox. <...
bertcool's user avatar
2 votes
1 answer
323 views

I'm creating autocomplete feature for my own low level program executor.I need to get the autocomplete values near the alphabet typed like in VScode and other IDEs. But I have a problem with resizing ...
Varsha's user avatar
  • 45
0 votes
1 answer
1k views

I'm using JQuery autocomplete for listing product items and it is working fine.But i want to add a functionality that list all product on focusing that input before user type. here is the jquery code. ...
code-droid's user avatar
0 votes
1 answer
344 views

I'm tring to do a autocomplete from json url, it works good. Now what I want, it's when I click to the autocomplete, I want to display the import button and if input is empty or we put a new value (...
oxem's user avatar
  • 81
0 votes
1 answer
805 views

I have been trying to fill multiple input fields using jquery autocomplete in my Django app. As an example, my model is somewhat like this: class Country(models.Model): country_code = models....
Stop War's user avatar
  • 574
0 votes
1 answer
1k views

I am using the jQuery autocomplete plugin. The situation is that the hint data is taken via the GET API method. I can't make the code wait until the end of accepting data from the API. $('#...
Muhammet Hudayberdyev's user avatar
-1 votes
1 answer
1k views

I tried to create Autocomplete using jQuery Ajax. Basically, I want to make autocomplete search with dynamic field added. But while I type in the input field then it gave me this error. JS Code $(...
Creatique IT's user avatar
0 votes
1 answer
444 views

Whenever I search, the position correctly displays But after some scrolling then displaying the results again using input.autocomplete('widget').show(); The position alignment is still the same as ...
Brian Antiqueña's user avatar

1
2 3 4 5
73