jquery-ui-autocomplete Questions

1

Solved

From the comment in this question, I've seen how to set an autocomplete field to empty if no element from the list has been selected. What I am trying to implement is that when a user does not sel...
Gardening asked 16/6, 2017 at 14:36

1

Solved

I have successfully modified the snippet from this blog post. In order to only match the beginning of one object value: $.ui.autocomplete.filter = function(array, term) { var matcher = new RegEx...
Abscess asked 16/6, 2017 at 5:32

3

Solved

I'm making a "token input" style checkbox with an autocomplete (user types in something, selects a response, which adds a "token" to the DOM view). Using jQuery autocomplete, is there a way to add...
Wicopy asked 11/6, 2012 at 17:14

3

Solved

I use the jQuery UI .autocomplete(), which I really love. I do have one major problem I cannot solve. When I type a letter, say s, and stackoverflow appears in the drop-down menu, and I use the mo...
Epicureanism asked 4/8, 2011 at 3:8

3

Solved

I am trying to implement Bootstrap Tokenfield with Jquery Ui autocomplete and so far i was able to do that except the fact that i am not able to prevent duplicates in the input field, so, unfortun...

2

Solved

I have an input field for locations with jquery-ui-autocomplete. <script type="text/javascript"> $(document).ready(function(){ var location_input=$('input[id="location-autocomplete"]'); v...

3

The jQuery Autocomplete docs for the select( event, ui ) option say: Triggered when an item is selected from the menu; ui.item refers to the selected item. The default action of select is to repla...
Premonitory asked 3/8, 2010 at 21:44

4

Solved

I'm trying to create some search functionality across several types of data, with autocomplete. I'd prefer to have custom views for each autocomplete suggestion, as well as for the suggestions to b...
Faretheewell asked 20/8, 2011 at 23:15

5

Solved

I'm using jQuery UI's Autocomplete slightly differently than it was probably created to do. Basically I want to keep all the same functionality, the only difference is that when the suggestion box...
Radke asked 18/5, 2011 at 10:52

2

Solved

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. ...
Guacin asked 25/4, 2013 at 15:36

11

Solved

I'm working with mutiple jquery-ui autocomplete widgets on one page and want to be able to set the widths of each one individually. Currently, I'm doing it like this: $($('.ui-autocomplete')[0]).w...
Korney asked 5/1, 2011 at 17:29

6

Can any one help me how to select first element of autocomplete dropdown list if no element is selected? I tried with autoFocus. working for key board events. If I use mouse, the first element is n...
Curtcurtail asked 17/12, 2013 at 11:46

5

Solved

There are tons of options out there for doing autocompletion. Most of them seem to work on the first few letters that are typed. In Google Plus, an autocomplete option drops down soon after typing...
Sharkey asked 17/8, 2011 at 7:47

6

Solved

I have been trying to make something like Facebook @tagged Friend name add in text area. I have been using jquery ui auto-complete to do the job , it's working fine except that I want some symbol s...
Marimaria asked 26/3, 2012 at 10:40

4

Solved

I want to clear the textbox having Jquery Autocomplete once the user has made the selection. I tried to clear the field by : select: function(event, ui) { $(this).val(''); } But this is not wo...
Viminal asked 23/7, 2012 at 7:13

2

Solved

I moved to jQuery UI 1.9 and have some problems with Autocomplete control. As written here they added option called messages that actually shows "No results" or results count information under the ...
Saintly asked 8/11, 2012 at 5:52

13

Solved

I’m using the jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results? For example, if I have “foo bar” as data and I type "foo" I’ll get “foo ba...
Bumpy asked 12/3, 2010 at 21:18

2

I'm using jQuery UI Autocomplete plug-in. Is there a way I can use a ‘search’ button to activate the query instead of having the Autocomplete text box do it? My users have a real bad internet conne...
Furrow asked 15/7, 2011 at 14:59

7

Solved

I'm working on a jQueryMobile application with some form fields that need auto complete functionality. I'm working with jQueryUi Autocomplete plugin but can't get it to work properly. It works fine...
Frankish asked 13/5, 2011 at 16:20

2

Solved

I want to trigger a search in the onclick event of my input, but only if the search window isn't already open. Presently, I do this: $(this).bind('click.ajaxselect', function(e) { if(!$(this).aut...
Parliamentarianism asked 23/7, 2011 at 22:24

3

Solved

I recently updated jquery ui and its autocomplete plugin - however in the newer version it won't let me select the options with a mouse click and I have to use the up and down arrows. How do I re-e...
Selfconfessed asked 14/11, 2012 at 13:9

7

Solved

I have a jQueryUI autocomplete that resides in a dialog. For some older versions of jQuery/jQueryUI, it displays the list of returned values, and for the newest versions it does not. Furthermore, I...

3

Solved

My requirement is to show few options when user input some characters (minimum 3) in one of input field which might be added dynamically too. I can not load data at page loading at beginning beca...
Shorn asked 29/10, 2015 at 9:48

1

Solved

I need to group AutoComplete results and I've found following solution. How can I figure out the category of selected suggestion? For example, lets say there are City and Country categories and us...
Porcia asked 17/9, 2015 at 1:33

2

Solved

I'm using JQuery UI Autocomplete for quick search widget. I have several grouped items like hotels, cities, areas etc. I could render categories, but I couldn't link them. When I try, ui autocomple...

© 2022 - 2024 — McMap. All rights reserved.