All Questions
Tagged with jquery-autocomplete or jquery-ui-autocomplete
3,625 questions
0
votes
0
answers
102
views
How do I chain filters with django filter and django autocomplete light
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 ...
0
votes
0
answers
48
views
Add li items into jQuery UI Autocomplete so the native click handler works, with 2 optional parameters
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 ...
0
votes
1
answer
27
views
Jquery-UI Autocomplete Setting Selected Text As 0
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 ...
0
votes
0
answers
15
views
jQuery autocomplete doesn't work on dynamically created input text fields? (ajax call included) [duplicate]
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 ...
0
votes
0
answers
52
views
jQuery Autocomplete Firing to Wrong URL
I have a Jquery UI Autocomplete, defined like so:
$('.postcode-lookup').autocomplete({
source: function(request, response) {
$.ajax({
url: '/...
0
votes
0
answers
68
views
Why is my Jquery autocomplete not working on my search bar?
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....
0
votes
0
answers
16
views
How to add tooltip on mouse hover on autocomplete options [duplicate]
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 ...
1
vote
1
answer
115
views
Add custom div in end of jQuery UI Autocomplete with list
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: ...
0
votes
1
answer
20
views
Jquery problem with json data in complex structure
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 ]...
0
votes
1
answer
759
views
jQuery UI Autocomplete in Bootstrap 5 Modal
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 ...
-3
votes
2
answers
775
views
$(...).autocomplete is not a function Error occurs when the page is load
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?...
0
votes
0
answers
20
views
Jquery - autocomplete - Returns specific code if the search failed
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 ...
0
votes
1
answer
889
views
SweetAlert2 with Autocomplete feature of JQuery UI
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" ...
0
votes
0
answers
23
views
Set the value of jQuery combobox programmatically [duplicate]
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 ...
1
vote
3
answers
2k
views
How to implement an autocomplete-datalist form field inside a CreateView in Django?
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 ...
0
votes
1
answer
70
views
autocomplete in django with jquery : display two fields in the form suggestion
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 ...
0
votes
1
answer
36
views
Jquery Autocomplete with Ajax Call not working
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 ...
0
votes
1
answer
297
views
autocomplete returning all results regardless of search key
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>
$(...
0
votes
1
answer
361
views
Autocomplete appears behind modal form (bootstrap 4)
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 ...
0
votes
1
answer
130
views
Jquery Autocomplete custom column filtering not working
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 ...
3
votes
1
answer
928
views
jQuery UI AutoComplete - How to handle multiple values ,when user removes a value in between the selected values
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&...
1
vote
0
answers
139
views
Dynamic jquery autocomplete in a table row repeater
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.
<...
0
votes
1
answer
1k
views
how to display a default list of data when focusing a jquery-autocomplete input
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.
...
0
votes
1
answer
804
views
How to fill multiple input fields in a template using jquery autocomplete
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....
-1
votes
1
answer
1k
views
Error : Uncaught TypeError: this.source is not a function
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
$(...