Tagged Questions
0
votes
2answers
30 views
Autocomplete not working in Dialog
Hi I have an AutoComplete on an input field. It works fine when caled from a html view but when called using a Dialog, the dropdown list does not appears. The data appears in the dropdown if I use up ...
1
vote
1answer
32 views
jQuery ui autocomplete ipv4
I'm using the jQuery UI Autocomplete as helper in a form. When I try to use it to search from a list of available IPs it never filter the results, no matter the number of characters (numbers) I type ...
0
votes
0answers
52 views
Jquery Autocomplete Multiple Values and Multiple Labels
I have a two fields, one hidden and one a text input. I am receiving the information from a remote PHP file, which gives the information in a JSON format (value and label).
What I'm trying to do is ...
0
votes
1answer
25 views
jQuery AutoComplete - Query Database with JOIN
I'm implementing the jQuery autocomplete library on a textbox. The SQL query I have in the back end uses a JOIN:
SELECT DISTINCT wcc.ItemCode, gwbo.ItemName FROM TBL1 gwbo
INNER JOIN TBL2 wcc ON ...
6
votes
1answer
82 views
Jquery AutoComplete vs Gmail AutoComplete
What makes gmail autocomplete much faster than jquery autocomplete?
Everytime I type something in jquery, I need to pause for several millisecond (noticeable) stop before the choice come out, compare ...
0
votes
1answer
48 views
Autocomplete Change Event firing after button click
I am using the JQuery UI Autocomplete. I needed it to MustMatch so I set it up like this:
$('#MyAutoComplete').autocomplete({
source: result,
minLength: 1,
change: function (event, ui) {
...
0
votes
3answers
46 views
jQuery AutoComplete not populating ASP
I'm trying to populate an AutoComplete in my Web App. The list is populated from a datatable. For some reason, I can't get it to show in the autocomplete. I know I'm getting results from the query ...
0
votes
1answer
43 views
jQuery Auto-Fill stop inside search
I've got the jQuery autofill script working to populate my text box as the user types to recomend results.
$( "#tags" ).autocomplete({
source: availableTags,
open: function(event, ui) {
...
0
votes
1answer
47 views
How to bind click event with jQuery autocomplete?
I am creating a searchbox by using jQuery autocomplete.I want to trigger a click event when I click on a corresponding li from the autocomplete list. I am writing as:
...
0
votes
1answer
79 views
jquery ui autocomplete search in xml file
I add a search input with autocomplete to parse an xml file.
I have some difficulties to understand how it works exactly.
my code:
var myArr = [];
$.ajax({
type: "GET",
url: "data.xml",
...
0
votes
1answer
76 views
jQuery UI Auto Complete and HTML Form with Select Menu
I have an HTML form which I'm using the jQuery UI Auto Complete plugin with and it's working well. It allows users to start typing and select from a list of pre-defined activities.
I've further ...
1
vote
0answers
192 views
JQueryUI AutoComplete w/ Multi-Select - Remove Selection
I'm using the JQuery Auto-Complete widget, with multi-select, as shown in this fiddle: http://jsfiddle.net/Z26yv/.
Here's the code:
<label>Teams:</label>
<input type="text" ...
0
votes
1answer
139 views
Object doesn't support property or method 'button' jQuery Autocomplete Combobox
I basically copied the example file from its official site and add it sequentially:
<script src="js/jquery-1.8.2.min.js" type="text/javascript"></script>
<style type="text/css">
...
0
votes
0answers
99 views
Typeahead.js tutorial
I am working on a project where i have to implement autocomplete in my search engine.
I found that Twitter has released Typeahead js ...
1
vote
1answer
237 views
jQuery UI autocomplete drop down list not styled correctly
I've got a autocomplete input on a form but the drop down list is not being styled correctly, it appears like a normal bulleted list of hyperlinks.
This is the rendered hidden list that the ...