2
votes
2answers
92 views

Jquery addRow and autocomplete

I have a table I would like to use autocomplete on a column. (medSearch is the class set for this column) I use the Jquery's autocomplete code autocomp_opt={ source: function(request,response){ ...
2
votes
1answer
305 views

How to show the json response values received from PHP file as jQuery autocomplete suggestions?

I'm using PHP, jQuery, AJAX, JSON, etc. for my website. I'm a newbie in AJAX,JSON and similar things. I'm implementing autocomplete functionality onto one textbox. I've written all the code for it, ...
0
votes
0answers
357 views

mvc 4 jquery autocomplete select does not launch view

I don't understand why my view is not rendering after the user selects an item from a jqueryui autocomplete combobox. The jquery in Index.cshtml is: $("#ItemList").autocomplete({ ...
1
vote
1answer
2k views

jQuery - Use key/value pair in autocomplete

In my ASP MVC view, I am passing a key/value pair back from the controller. After looking at fiddler and viewing in Chrome's debugger I can see that the information is being passed back correctly. I ...
0
votes
1answer
312 views

jQuery UI Autocomplete With Json Not Showing Suggestions

I'm experiencing some troubles with an autocomplete component from jQueryUi. The list with autocomplete suggestions doesn't appear. I've tested the following code (from jQuery UI) and, despite ...
0
votes
0answers
434 views

Jquery autocomplete countries flags how to?

I need to create an autocomplete jQuery script that will filter information from a .csv (or xml etc) file and after select the result will display all the information. From what I understand I will ...
0
votes
0answers
346 views

How to use an external datasource with jquery autocomplete combobox

I just can't figure it out how to implement an external database table source to a jquery autocomplete Combobox. I can bring the data to the combobox. But when I click one of the options in the ...
0
votes
0answers
148 views

Which function of Autocompleter in jQuery UI fills the value in the text field on which autocomplete is applied?

I have a searchbox which implements jQuery's autocomplete to give suggestions. I have also a 'labelify' method on the searchbox. The issue is - when I hover over the list of suggestion they fill my ...
0
votes
1answer
61 views

problems with type and format out of a jQuery .map() function

I am trying to insert selections from a second data source into an Autocomplete dropdown. Both 1st and 2d source fetches are via ajax. I crafted and hard coded a JSON array that works to insert 2d ...
1
vote
1answer
89 views

Autocomplete Jquery does not shows the results

I using Jquery autocomplete and I have the following code: Client side: $( "#tags" ).autocomplete({ source: function(request, response) { $.ajax({ url: ...
1
vote
1answer
2k views

jquery ui autocomplete with ajax data source

I'm trying to use the jquery ui autocomplete feature with an ajax datasource and I just can't see what is wrong with my code. Here is my code $(document).ready(function () { var data = new ...
2
votes
1answer
650 views

jQuery UI Autocomplete onSelect rewrite

I've got a text box that I am attaching an autocomplete function to. As you start typing... it looks up in the database and returns/narrows down the appropriate content. When a user selects from the ...
0
votes
2answers
242 views

Transforming data returned while using jQuery's Autocomplete function

I'm trying to use the Autocomplete plugin to produce a search box similar to the one at IMDB, I want it to: Show more than just text in the options. To act like a link when an option is selected (as ...
0
votes
0answers
433 views

ajax call succeeds but jquery autocomplete does not work

I have a search box, as the query is being typed, an ajax call is made to predict what type of the query it is. Once the json result comes back, the autocomplete should show a list of the matched ...
0
votes
0answers
179 views

How to send additional parameters to remote script in jQuery Autocomplete

To the best of my knowledge, when a remote script is specified as the source in the set of Autocomplete options, that script receives whatever the user has typed until that point, and then it's up to ...
0
votes
2answers
2k views

jquery ui-autocomplete-loading class gets added but styles don't apply

Im using jquery ui autocomplete for a search on my site. I want to add in a simple loading spinner while returning results. jquery ui automatically adds in the class 'ui-autocomplete-loading' when ...
0
votes
1answer
410 views

jQueryUI Autocomplete - Multiple controls - One function

I am using the jQueryUI autocomplete, have used it many times before, but I now have a more complex requirement. I have a variable amount of Autocomplete fields to setup, using a JSON datasource ...
2
votes
1answer
92 views

jQuery Autocomplete Unresponsive

I've used jQuery UI's autocomplete in the past, but for some reason I can't get it to do anything with a TextBox. There are no script errors, and to register it, I'm using: ...
1
vote
1answer
179 views

Returning custom item in JQueryUI Autocomplete

I want to return the "No Record Found" message as ListItem when there is no record. I managed to detect whether the result is empty or not by using "data.d". However, I don't know how to return "No ...
3
votes
1answer
365 views

autocomplete with freebase and jsonp

I'm trying to use the example for Jquery-ui autocomplete to work with Freebase. Additionally I'm using the tag-it plugin... This is what I'm trying but doesn't work: $(function() { ...
1
vote
0answers
667 views

Jquery UI AutoComplete Sending extra dynamic parameters to ashx

I am trying to pass extra parameters through to my ashx when using Jquery UI auto complete. I have seen lots of examples and have spent ages fiddling but I can't get mine to work. I have two auto ...
0
votes
1answer
202 views

jquery Autocomplete plugin working with older versions of the browsers but not new ones?

i am using jquery Autocomplete plugin it is working fine in older versions of the browsers but in new version of the browsers it is not showing all the suggestions. i am using JSON to parse the ...
1
vote
1answer
1k views

How to prevent opening jqueryUI autocomplete drowpdown on fast entry

jQueryUI autocomplete is added to input text element using code below in form. If text is entered and tab pressed rapidly, cursor moves to other column but autocomplete menu remains open. How to ...
1
vote
2answers
496 views

JQuery tiered Autocomplete that does not set data for the next tier

I have an Autocomplete for state and province names running. I want to pass the state abbreviation to the next cascade of Autocomplete. I created a hidden input and I want to set it to the ...
0
votes
1answer
8k views

Using jQuery UI Autocomplete widget with label/value in JSON but not showing the results

I'm using the autcomplete widget to fill a client id in a form. It will show the label, the client name, but needs to pass the id. I'm using json and this javascript code to process: ...
2
votes
2answers
922 views

How do you limit number of search matches with Jquery UI autocomplete?

Im currently using the JQuery UI extension for its search autocomplete. However, I need to be able to limit the list of matches to 10. Furthermore, I also need to have a button on the bottom that will ...
2
votes
1answer
663 views

jQuery UI AutoComplete Plugin - Questions

I have an ASP.NET MVC 3 Web Application (Razor), and a particular View with the jQuery UI AutoComplete plugin (v1.8). Here's the setup i currently have: $('#query').autocomplete({ source: ...
5
votes
1answer
5k views

JQuery UI Autocomplete Syntax

Can someone help me understand the following code? I found it here. It takes advantage of the JQuery UI Autocomplete with a remote source. I've commented the code as best I can and a more precise ...
5
votes
4answers
7k views

How do I pass an extra parameter to Jquery Autocomplete field?

I'm using the JQuery Autocomplete in one of my forms. The basic form selects products from my database. This works great, but I'd like to further develop so that only products shipped from a certain ...
3
votes
3answers
502 views

Is there a way to force a user to select an autocomplete value before they can submit the form?

I am using the jqueryui autocomplete feature to allow the user to select their location. I need to make sure they select a location from the autocomplete before they can submit the form. I don't ...