Skip to main content

All Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
102 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
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
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
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
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
0 votes
0 answers
68 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
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
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
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
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
-3 votes
2 answers
775 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
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
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
23 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 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
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
1 answer
36 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
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
361 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
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
3 votes
1 answer
928 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
1 vote
0 answers
139 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
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
804 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
-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

1
2 3 4 5
73