jquery-autocomplete

jquery ui autocomplete not working in ie8 (until page refresh)

Hello all, I am using jquery ui autocomplete it is working absolutely fine in all browsers except ie8. I have been doing some testing and there seems to be a strange bug. When I click on a link leading to the relevant page there is the following error generated by ie8 when I start typing in the autocomplete box: 'object doesn't support...

Using jQuery Autocomplete with Validator onBlur timing problem

Here's my problem, I have an input element in a form that is implementing jQuery.Autocomplete and jQuery.validate, all working normally except when I click an element in the autocomplete list to select it. What happens is validation occurs before the autocomplete sets its value. Because validation occurs on onBlur, and you just click...

jQuery autocomplete on multiple fields

Hi all, Surprisingly, I didn't find any answers to my question. I want to make a form on jQuery with two fields. City Code. City Name. and when I enter a city code and go out of the field. I want an autocomplete on the city name. I Installed the jQuery Autocomplete plugin. and I have the following code : $(document).ready(functi...

jQuery AutoComplete select firing after change?

I'm using the jQuery UI AutoComplete control (just updated to jQuery UI 1.8.1). Whenever the user leaves the text box, I want to set the contents of the text box to a known-good value and set a hidden ID field for the value that was selected. Additionally, I want the page to post back when the contents of the text box are changed. Cur...

Optimize LINQ Query for use with jQuery Autocomplete

I'm working on building an HTTPHandler that will serve up plain text for use with jQuery Autocomplete. I have it working now except for when I insert the first bit of text it does not take me to the right portion of the alphabet. Example: If I enter Ne my drop down returns Nlabama Arkansas Notice the "N" from Ne and the "labam...

jquery ui autocomplete problem

Hi, i've got a select box containing countries, and when one is selected, i want my autocomplete data for the city field to load via ajax. here's my code: // Sets up the autocompleter depending on the currently // selected country $(document).ready(function() { var cache = getCities(); $('#registration_city_id').autocomplete( ...

JQuery UI Autocomplete - disallow free text entry?

Is it possible to disallow free text entry in the JQuery UI autocomplete widget? eg I only want the user to be allowed to select from the list of items that are presented in the autocomplete list, and dont want them to be able to write some random text. I didn't see anything in the demos/docs describing how to do this. http://jquery...

How to flush the cache of the auto complete in jquery

How to flush the cache of the autocomplete in jquery? ...

Is ZendX still active (Specifically ZendX_JQuery) ?

I need to have an autocomplete functionality using jquery, and I've encountered ZendX_JQuery which has such functionality available. However, I've noticed that the entire ZendX_JQuery classes, are a bit old (the default jquery version is 1.3.2, and jquery ui 1.7.1). (see http://framework.zend.com/svn/framework/extras/branches/release-1....

jQuery AutoComplete with three levels of suggestions?

I am building a django based application and its time to add the DHTML stuff. One of my fields represent a database field with this format databaseName.tableName.fieldName I would like to have javascript autocompletion in three levels, say once I type part of the database names I get a list of all matching databases, one that is select...

jQuery Autocomplete plugin not working with jQuery 1.4.1

I've been using the JQuery Autocomplete plugin with JQuery version 1.3.2, and it has been working great. I recently updated JQuery in my project to version 1.4.2, and the Autocomplete plugin is now broken. The JQuery code to add items to a textbox on my web page doesn't seem to be getting called at all. Does anyone know if the JQuery ...

JQuery UI Autocomplete, value after select (by mouse) is different than (by arrow-keys)

Hi, I'm using jQuery UI Autocomplete 1.8.1 with Jquery 1.4.2 and I have this issue. At first, I can't force the value of the Autocomplete input field, well this is not a big problem. But I have this issue with it: I doesn't act similarly when a user select a choice using mouse to using keyboard arrows. When using keyboard everythin...

How can I retrieve two values from jquery-autocomplete

I need my application to auto-complete on a company name, but also fill in a hidden form field with the ID of that company selected. I believe it's possible to return pair values, with the pipe separator, such as........ Microsoft|10 Oracle|20 Sybase|30 And indeed this seems to work, but I don't know how to access the 2nd argument. ...

Where can I download a non-minified version of jQuery UI?

I'm trying to customize the autocomplete combobox with the intent of using it for nested lists with flyouts. Starting this with the minified version of jQuery UI is obviously not ideal. The download builder only provides minified downloads. ...

How to generate non-prefix autocomplete suggestions?

I would like to add autocomplete to my tagging functionality. A couple of questions: How do I generate a list of autocomplete suggestions that includes matches in both the prefix and the middle of string? For example, if the user type "auto", the autocomplete suggestions should include terms such as "autocomplete" and "build automat...

Jquery AutoComplete - Add Links Equal to Original SelectBox value to DropDown List

I'm trying to modify this example: http://jqueryui.com/demos/autocomplete/#combobox to parse a similar select list, in which hyperlinks are passed as values. <select id="combobox"> <option value="/page1" title="Page1">Page1</option> <option value="/page2" title="Page2">Page2</option> <option value="/page3" title="page3">Page3</option> <...

jQuery Custom Autocomplete load with jQuery Validate

It may sound like a very minor issue. I have a voting system with many text fields where survey taker enters the name. Each of the input box has been initialized with autocomplete. There's also jQuery Validates running on the form where I have to use .addMethod to validates them dynamically base on the sibling input fields. The follo...

Tie the text box and the search results list together.

This is kind of like the "SelectFirst". I'm trying to tie a text box and the search results list together. So, as a user types something into the text box the results list selects the first item in the list. As the user narrows down the the list the selection would already be highlighted. Is this possible? Thanks in advance. ...

Error in jqurey AutoSuggest

Hi I am getting an error while working with the jquery autosuggest in a inputbox using Asp.Net MVC 1.0 Error : event.currentTarget is undefined var TargetId = "[keyFor=" + event.currentTarget.id + "]"; In a file called autocomplete.helper.js Please help me ....... Thanks in Advance Regards., S.Santhosh Kumar +91 9894761212...

Using current selector in JQuery autocomplete

Hi, I'm using JQuery UI's autocomplete widget and would like to have access to the current selector which I'm attaching the autocomplete to. I have found a way to access the selector, using a previous question here, but the source function is called with incorrectly. My current code looks like this $("input[id$=artist]").each(function(...