jquery-ui-autocomplete Questions

20

Solved

I have implemented a jQuery UI Autocomplete box, and rather than being the width of the textbox, the dropdown options are expanding to fill the remaining width of the page. Have a look at this exa...
Cysteine asked 13/4, 2011 at 2:30

6

Solved

I have added two jQuery UI Dropdown Autocomplete script. Now I want get both value onchange of second dropdown and want to store separately in variable. How it is possible? Any ideas or suggestion...

12

Solved

I'm using jQueryUI autocomplete, and I have a function mapped to the select event, e.g.: $("#someId").autocomplete({ source: someData, select: function (event, ui) { ... }, focus: function (eve...
Matty asked 3/10, 2011 at 10:24

5

Solved

I'm using jquery ui autocomplete and want to decipher between focus events triggered by keyboard interaction and mouse interaction. How would I go about this? $('input').autocomplete({ source: fu...
Chiromancy asked 13/4, 2011 at 17:44

17

Solved

I'm trying to find a working example of the twitter bootstrap typeahead element that will make an ajax call to populate it's dropdown. I have an existing working jquery autocomplete example which...

15

Solved

I am using jQuery UI Autocomplete. $("#task").autocomplete({ max:10, minLength:3, source: myarray }); The max parameter doesn't work and I still get more than 10 results. Am I missing some...
Vortical asked 1/10, 2011 at 0:43

3

Solved

I'm trying to get jQueryUI AutoComplete to trigger on dynamically created form input elements, but it's not working. I've tried using keyup.autocomplete and keydown.autocomplete as bind events in $...
Parados asked 12/7, 2011 at 20:46

5

Solved

I have an array like ["JOAQUIN", "BERNARDINO", "MODOC","ALASKA","MADERA", "ANDERSON"] where I'm populating them in a jQuery UI Autocomplete. However the order of sorting seems to be weird. For e...
Ensoll asked 20/9, 2013 at 4:12

8

Solved

I cannot get the results of a jQuery UI autocomplete to show, although the php code returns json results. The jquery code is as follows: $("#newName").autocomplete({ source: function(req...
Compendium asked 25/2, 2013 at 14:53

18

i am using the jquery ui autocomplete widget inside the jquery ui dialog. when i type in the search text, the textbox indents (ui-autocomplet-loading) but does not show any suggestions. var availa...
Bunker asked 9/7, 2010 at 23:24

3

Solved

I need a simple autocomplete search functionality but also allowing users to type more than one value. I'm using jQuery UI's autocomplete widget (http://jqueryui.com/autocomplete/) and so far I've ...
Zuzana asked 5/10, 2013 at 15:6

3

Solved

I've got a working autocomplete field in my web application and I'm looking for a way to increase the usability of the field by somehow automatically skipping the category fields when an arrow key ...

15

Solved

I ran into an interesting issue with jQueryUI autocomplete in a dialog box. My dialog HTML looks like this: <div id="copy_dialog"> <table> <tbody> <tr> <th>Title...
Selfabsorbed asked 31/12, 2011 at 1:6

13

Solved

When using the jquery autocomplete plugin, what do you do when the user does not select an item in the list, but instead types a valid value and tabs away? eg when the auto complete list contains:...
Johathan asked 1/5, 2012 at 23:51

3

inside js function I'm receiving event as parameter, how do you get the value of the event target? function myFn(event){ ... close: function(event){ var myVal = ... /// should grab from ///...
Callas asked 13/7, 2016 at 9:52

12

Solved

I have a display problem in the jQuery autocomplete inside a modal dialog bootstrap. When I mouse scroll, the results do not remain attached to the input. Is there a way to solve this? Here JsFi...

3

Solved

Is there a way to tell jQuery UI Autocomplete which JSON array indexes to use as the 'label' and 'value' when those aren't the index names used in the JSON array? The aray containing my lookup val...
Astyanax asked 3/6, 2012 at 2:47

5

Solved

I've found here that to overwrite one of the autocomplete events. But can somebody please provide me with example how to do the same?
Coming asked 29/10, 2011 at 19:50

14

Solved

I am using this jQuery UI combobox autocomplete control out of the box off the jQuery UI website: My issue is that I have multiple comboboxes on a page, and I want them to have different widths fo...
Thumping asked 22/4, 2010 at 6:31

4

Solved

I'm using jQuery 1.11.2 and trying to get the autocomplete widget to parse a data array. I have to people in the array, Will Smith and Willem Dafoe. I expected to see both of the names be added to ...
Olivier asked 27/1, 2015 at 17:36

5

Solved

From jQuery UI site (veiw source): $( "#birds" ).autocomplete({ source: "search.php", minLength: 2, select: function( event, ui ) { log( ui.item ? "Selected: " + ui.item.value + " aka " + ui....
Skylab asked 28/11, 2011 at 18:18

3

Solved

I have Fiddle here And I need availabletags1 as source if it's choice1 radio button is chosen and availabletags2 if choice2 radio button is chosen. And I need to change this dynamically by actual...

1

I've implemented jQuery Autocomplete for a client. Now they want me to highlight (e.g. make bold) the the portion of the result that matches the text they've typed. e.g. the user types "something"...

4

Solved

I am referring to this plugin: http://jqueryui.com/demos/autocomplete/ So the original structure for the results is <ul class="ui-autocomplete ui-menu ui-widget ui-widget-content ui-corner-al...
Quag asked 12/10, 2011 at 21:14

0

The problem seems so solvable yet it eludes me. Hope I am able to explain my predicament. I am trying to include a jQuery autocomplete in a form. The autocomplete itself is working fine. I am now ...
Phillipphillipe asked 8/1, 2020 at 20:9

© 2022 - 2024 — McMap. All rights reserved.