jquery-ui-autocomplete Questions

3

Folks, Hi there. I've googled and overflowed, but haven't found an answer. Perhaps that's because I'm only of middling expertise with jQuery / javascript. jQuery - 1.6.3 jQuery UI - 1.8.16 T...
Travers asked 1/11, 2011 at 1:50

3

Solved

I'd like to sort my jQuery Autocomplete UI results based on where in the string the match occurs. The results where the match is the first letter should be prioritized above results in which the ma...
Wondrous asked 28/11, 2011 at 21:24

3

Solved

Im having troubles trying to get the autocomplete to work properly. It all looks ok to me but.... <script> $(function () { $("#customer-search").autocomplete({ source: 'Customer/GetCustom...

3

I have an autocomplete feature in my application which makes an ajax request to server. However, once I get data from server, I want to use the look up feature instead of using the service url(to m...

1

Solved

I am adding the autocomplete functionality to text box. Referring this jQuery autocomplete custom data plugin. Without custom data code it is working fine. I have added following custom data code ...

3

Solved

I have a "modal window" in a webpage obtained by applying to a div the css property position to fixed. The div contains input fields. In particular, I'm using the autocomplete widget from jQueryUI....
Yseulta asked 2/9, 2012 at 9:26

4

Solved

I am using JQuery UI's autocomplete. I have a number of values, as well as a small collection of keywords, one of which is assigned to each value. I would like to display each pair in a mini-table,...

2

Solved

I am using Django web-framework for database, page generation etc. jQueryUI / javascript side of the code I want to use jQueryUI's autocomplete widget, as my data set will contain about 1,000 ent...
Ephram asked 16/2, 2011 at 19:0

14

Solved

When using the jquery ui autocomplete combobox, can you set a default value for the combobox?
Weather asked 1/5, 2010 at 11:24

3

Solved

A potentially simple issue with jQuery UI autocomplete is stumping me. My source is var ac = [ { label: "One Thing", value: "One-Thing" }, { label: "Two Thing", value: "Two-Thing" }, ] ...
Elva asked 29/6, 2013 at 1:8

5

Solved

I have a large HTML form that contains many fields that need an autocomplete for accounts. I tag these fields with the class AccountLookup and jQuery does the dirty work for the autocomplete: $("....
Douty asked 21/12, 2010 at 17:39

1

Solved

Good Morning, I have the following code: $("#close-request-field-clinic").autocomplete({ source: arrayClinic, delay: 0, minLength: 0, isDivider: function( item ) { return false; }, focus: ...
Eyde asked 27/1, 2015 at 11:2

4

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 selects a value fr...
Cheesy asked 21/7, 2010 at 13:40

5

Solved

There is an issue if you open up an autocomplete drop down and also resize your browser window the autocomplete drop down does not reposition. Highlighted in this video: http://www.youtube.com/watc...

4

Solved

I'm using the jquery ui autocomplete combobox, and it's working great but now i'm getting a bit greedy. I would like to be able to add categories to it. The combobox is generated off of a menu so i...
Transform asked 14/6, 2012 at 19:12

7

jQuery autocomplete UI - I'd like to start the search "onfocus" and immediately show the list of choices when the user tabs or clicks into the search field without the user having to type anything....
Joo asked 18/12, 2010 at 19:6

3

Solved

I have used the jquery-ui to autocomplete an input box and set a hidden value from the selected item. This I did using the select: function(event, ui) { ...$("#myDiv").val(ui.item.value)... } ...
Pennipennie asked 28/7, 2010 at 20:59

5

Solved

Before jQuery UI 1.8.4 I could use HTML in the JSON array I built to work with an autocomplete. I was able to do something like: $row_array['label'] = '<span style="color: red; font-family: co...
Hamulus asked 15/8, 2010 at 15:31

3

I am using JQuery UI autocomplete. Everything works as expected, but when I cycle with the up/down keys on the keyboard, I notice that the textbox is filled with items in the list as expected, but ...
Interdict asked 27/7, 2012 at 4:5

6

Solved

Before you point me to them, yes, I have reviewed the half dozen posts on this topic, but I am still stymied as to why this doesn't work. My goal is to detect when the autocomplete yields 0 result...
Reside asked 17/1, 2011 at 23:21

2

Solved

I am trying to submit a form when an item is selected from the menu. I set class on the search form and I am using the event select for it which is found here: http://docs.jquery.com/UI/Autocomplet...
Budgie asked 11/10, 2011 at 22:30

2

I'm using Jquery-ui version 1.10.3 with jQuery 1.8.3 and trying to implement a custom display of data fetched by the autocomplete server fetch: This is the part that does the rendering override: ...
Environment asked 25/7, 2013 at 23:50

4

Solved

I've been searching all over the place and just don't see anyone doing it - Is it possible to have some kind of spinner/loader with a jQuery UI Autocomplete? (1.8) while data is being fetched?
Guyenne asked 25/3, 2010 at 21:24

8

Solved

how can I attach an onchange function in a jqueryUI combobox? Here is my code: $(".cmbBox").combobox({ change:function(){ alert($(this).val()); } }); When the value changes, it will alert the...
Asp asked 21/1, 2011 at 15:3

4

Solved

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 autocomplet...

© 2022 - 2024 — McMap. All rights reserved.