2,124 questions
0
votes
0
answers
86
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 ...
-2
votes
1
answer
53
views
Jquery autocomplete but react and shadcn? [closed]
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 ...
0
votes
0
answers
45
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
76
views
jQuery auto complete on Modal
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 ...
0
votes
1
answer
23
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
1
answer
62
views
jQuery autocomplete (ajax) not working in SPA [duplicate]
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 ...
0
votes
0
answers
14
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
18
views
what php regex expression would do it for a preg_match_all to get desired strings out of a html string
i am struggling since days (my regex know-how is very much lacking...) to grab strings from an html string...
i have a html string with repeating html like this:
`<tr class="hintergrundfarbe2&...
0
votes
0
answers
56
views
Jquery autocomplete with special characters
I'm using the jQuery autocomplete for city names. I had issues with accents and "ç" but it's good now. I still have issues with "-" though.
For example, if the user type "...
0
votes
2
answers
145
views
Autocomplete with multiple inputs asp.net core
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 ...
0
votes
0
answers
48
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: '/...
1
vote
1
answer
66
views
jquery ui-autocomplete is not showing the dropdown
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-...
0
votes
0
answers
62
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
90
views
Disable mouse over scroll in autocomplete
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....
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 ...