0
votes
0answers
22 views

JQuery UI Autocomplete on more than 1 field

I am using JQuery UI Autocomplete. I have 2 fields that I want the autocomplete to work on. How would i refactor the below so I can have the autocomplete work on 2 fields? I know I can copy and paste ...
0
votes
1answer
37 views

Jquery UI autocomplete with web form

I'm using jquery ui autocomplete in an asp.net web form, searching an image repository resulting in a list with imagethumb and title. <script type="text/javascript"> ...
4
votes
0answers
62 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
45 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
26 views

What is the difference between JQuery UI autocomplete “multiple values” and “multiple, remote”

I am using a JQuery UI autocomplete filter in my project and I want the user to be able to input multiple items from a database on a server. I am sort of confused as to what the difference is between ...
0
votes
1answer
30 views

How to overlay Two Images in Two Separate Classes?

I have two classs: One: .ui-combobox-customclose { background: url('js/autocomplete/css/ui-lightness/images/close-button.gif') no-repeat right center; z-index: 105; } and the other ...
0
votes
5answers
50 views

How to change button text in JQuery

I have this working code so far: Fiddle: http://jsfiddle.net/r4emt/12/ Right now before you enter the JQuery UI autocomplete, the button reads "Hello". You can type "item" in the JQuery UI ...
0
votes
1answer
107 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
3answers
52 views

Div created using JQuery doesn't work

I have a strange problem with JQuery, I am trying to use a text field which uses autocomplete of JQuery UI to show suggestions, and appends each selected text value to a div. Along with each text ...
0
votes
1answer
91 views

jquery-ui-autocomplete How can I set the ID into the textBox and it will return me the text value

I'm having a lot of trouble making jQuery's autocomplete widget work for me. I am using a list of key/value pairs from a server. I have the following requirements: If the user set the id of the ...
-2
votes
1answer
59 views

How to change button text based on user text input JQuery

I have a button and a JQuery autocomplete. I want to make it so that it works like this: if(input=='') { button.text = "hello"; } else { button.text = "world"; } I dont know how to ...
0
votes
2answers
133 views

How to split a JQuery autocomplete multiple value string

I have a JQuery autocomplete working with the ability to hit the "Add" button and having the user input show up on the screen in a JQuery sortable list, but I want to separate the inputted string into ...
0
votes
1answer
140 views

Knockout jQueryUI Autocomplete how to use input value if nothing selected from autocomplete list

I am using the custom binding provided in Autocomplete combobox with Knockout JS template / JQuery I want to allow the user to either select a value from the list of suggestions or enter a value that ...
3
votes
1answer
30 views

Unable to bind Autocomplete using jQueryUI

I am trying to make autocomplete using jqueryUi, but unable to bind data to it. $("#CustomerName").autocomplete({ source: function () { $.ajax({ url: ...
0
votes
1answer
232 views

Uncaught TypeError: Object [object Object] has no method 'autocomplete'

I am trying to use the jQuery autocomplete feature on an ASP MVC 3 web page. Unfortunately I keep getting this error. I've looked at version 1.9.2, which I'm using, and it does have the autocomplete ...
0
votes
0answers
59 views

jQuery UI Autocomplete with fixed header

I'm working on a project that requires a "product search" which will display a grid with product names and prices. I'm using jQuery UI with the Autocomplete widget to achieve this, and I pretty much ...
1
vote
2answers
177 views

jQuery UI Autocomplete using a static json file as source

I'm using jquery-ui-autocomplete (actually, a catcomplete attached to a search box). It works vey well as long as I use a static-defined array of items as source. For performance reasons, I don't ...
0
votes
1answer
155 views

AutoComplete Multiple Values, Preserve LineBreak

I am using the code from the jQuery UI example for multiple values. When I try to put a line break in, it will let me, but then when I try to add a new item, it removes the line break. How can I ...
0
votes
0answers
68 views

jQuery tag-it auto-complete doesn't work after a partial update

While I'm trying a tag cloud input using the "tag-it" plugin, I found that the autocomplete function works perfectly fine when the page loads for the first time. But later, after any partial updates ...
0
votes
1answer
294 views

jQuery Autocomplete, binding multiple autocomplete instances to the same text input

I am trying to control two jQuery autocomplete searches with a single text field. I can add jQuery autocomplete to an input using the code below: $("search-input").bind("autocompleteselect", ...
1
vote
1answer
53 views

Jquery autocomplete to search within more than one cloumns of a table

Jquery UI's autocomplete has given the solution to searching through one colum of a table. So if you get the source from a table with firstname field then you can only search with firstname. But ...
0
votes
1answer
61 views

Autocomplete the data from a remote source

I am currently using the jQuery UI autocomplete widget, pulling the data from a remote source. My problem here is, I used to have only New York data needed preloaded. But now, I added new cities; ...
0
votes
0answers
56 views

Rebind Jquery Autocomplete?

I want to rebind the auto-complete plugin on its select event, actually I want to remove the selected item from suggestion. Currently the code is like what is pasted below, if I copy the whole plugin ...
0
votes
1answer
265 views

Filter Jquery AutoComplete by multiple values of an array of objects

I want to set up autocomplete plugin for selecting only the valid employees in the list. I have an array of Employee objects, having EmployeeID and EmployeeName. Currently I have loaded the ...
0
votes
3answers
109 views

jQuery Autocomplete using URL

I've been working on a site that currently uses Prototype+Scriptaculous's Ajax.Autocomplete. It works great at the moment, but I need to convert it to jQuery. I know that jQueryUI has an ...
0
votes
1answer
61 views

Jquery UI Combobox wont trigger on change if empty

i have a JQuery UI Combobox. I use it as a filter. I got an on change event, i select something from the combobox and then the site reloads with the new filtered data, this is ok its what i want. The ...
1
vote
1answer
396 views

how to pass hidden id using json in jquery ui autocomplete?

perhaps it is duplicate,but i can't found solution so i posted this question.I am use jquery ui for auto complete search box. it works fine but the problem is i want to search using id.example:when ...
1
vote
1answer
86 views

Combining jQuery UI Autocomplete Sources

I have achieved functionality that I like with the following source tag: source: function (request, response) { // delegate back to autocomplete, but extract the last term ...
0
votes
2answers
112 views

jQuery UI Autocomplete Partial Match

I am trying to make the jQuery UI Autocomplete search only the first few letters of my strings. I thought I could do a key/ value thing with jQuery UI, but I am not sure if that applies. I have the ...
0
votes
1answer
89 views

How to hookup jQuery autocomplete with POST query to remote data source?

I'm trying to hook up a text field to jQuery UI's autocomplete with a remote data source using a POST query. So far I have this: $( "#booking_student" ).autocomplete({ source: function( ...
2
votes
1answer
203 views

jquery ui autocomplete with ajax wich source is generated from text file using foreach

After I done a lot of search and I come many post here similar to my case, listed below: Jquery UI autocomplete ajax is not populating dropdown box jQuery UI GET autocomplete source with ajax request ...
0
votes
2answers
120 views

Why is jQuery not seting my select to the selected value

I have standard select which is turned into a combobox using jQuery. <select name="Searchby" id="Searchby"> <option value="all" >All Departments</option> <option ...
1
vote
2answers
540 views

Jquery ui combobox (autocomplete) disappears

I'm trying to do this http://jqueryui.com/autocomplete/#combobox The problem is that when I go with the mouse over an option, options will disappears and it cames out the advice: "x didn't match any ...
0
votes
1answer
104 views

Jquery val don't set new value to a textbox

I use jqueryUI autocomplete to search in geo names, but I can't set value to my textbox here is my code: <script> $(function () { function log(message) { ...
0
votes
1answer
83 views

How do I use jquery autocomplete to display a different list after a selection is made?

So I have a textfield with an autocomplete attached to it working fine. Here's what I want to happen: The user types some letters into the textfield The user is presented with the autocomplete ...
1
vote
2answers
78 views

JQuery Autocomplete Problems

I know that there are already a bunch of problems associated with the JQuery autocomplete UI widget, but none of those worked. I'm simply writing code based on the presented source here: ...
1
vote
2answers
288 views

JQuery Autocomplete: Get the currently focused <li>

JQuery Autocomplete triggers a focus event when the user mouses over or otherwise highlights one of its <li> options. Within this event, I want to refer to the <li> that is currently ...
0
votes
2answers
268 views

jQuery Autocomplete UI get source from asp page

How to get source to Jquery Autocomplete UI from classic asp page? i found that default code. But i want to take my results from another asp page. How may i send with asp and get jQuery? I need ...
2
votes
2answers
213 views

Focus on a jQuery autocomplete result (not necessarily the first)

I am struggling to extend jQuery autocomplete so that a particular item has focus by default. The out-of-the-box functionality works pretty well, but it's not perfect. Using the autoFocus option I can ...
0
votes
0answers
95 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
0answers
51 views

e.stopPropagation() screws up autocomplete

I'm trying to use the jquery autocomplete function, and it works the first time when I click on the option I want to select, but after that first time, I'm unable to select my option with the mouse, ...
0
votes
1answer
158 views

Jquery:create a dictionary to autocomplete all inputs

i want to add an smart autocomplete to my project in which when ever user is typing a word in any input its autocompleted from his own dictionary. his owner dictionary is built by saving every word ...
2
votes
1answer
146 views

jquery autocomplete, best way to join displayed data

to keep things simple, I have jquery autocomplete working, what is the best way to approach, joining/displaying a multiple rows from the array in the same input field. My php looks like this ...
0
votes
1answer
81 views

Using jQuery-ui autocomplete to get sorted data

So I want to use jQuery-ui autocomplete plugin to just get the sorted data in json format so that I can create my own custom UI. Custom UI would be like the one in attached sample image. For this, I ...
0
votes
2answers
152 views

Jquery Autocomplete “almost” working but list doesn't populate completely

I'm trying to use autocomplete in jquery, and it works with the demo data, but I haven't been able to make it work with my own data source. I'm trying to write a mailer where the user just enters a ...
0
votes
1answer
89 views

Autocomplete doesn't work on certain inputs

jQuery UI autocomplete plugin not working My code: $(document).ready(function() { $('#category').autocomplete({ source : 'suggestion.do', width : 300, max : 10, ...
0
votes
1answer
183 views

jquery autocomplete auto fill field with 1st value and highligh added part

im using jqueryui autocomplete plugin with following code $(this).autocomplete({ source: function(request, response) { $.ajax({ url: 'clinic/auto', ...
0
votes
0answers
61 views

Autocomplete +jsonp doesn't work

I've got problem with pase json file in jquery ui autocomple. My script: http://jsfiddle.net/fBEMQ/ $("#artist").autocomplete({ source: function(request, response) { $.ajax({ url: ...
0
votes
1answer
43 views

jquery autcomplete not working when i use .ajaxstop for other function

i use this js to show a "please wait" popup for all pages of my web "i include it in header" and its working fine and show the pop up with every ajax call and hide after it finish in. ...
1
vote
1answer
160 views

Combining a local source and remote source in jquery ui autocomplete

I included locally in javascript a list of commonly used terms, and then I would also like to get json response from the server through ajax response. How can it be done? var projects = ["apple", ...

1 2 3 4 5 7
15 30 50 per page