jquery-ui-autocomplete Questions
7
Solved
I need some help on how to implement a jquery-ui autocomplete in my Rails app.
I want to add autocompletion to a text field where the user can enter in a customer name. As there can be hundreds of...
Kisung asked 6/7, 2010 at 16:23
2
Solved
This should have been pretty straight-forward, but none of the solutions in StackOverflow doesn't seem to work for me...
Using jQuery 2.1.0, I've set up an autocomplete using an Ajax source, autoF...
Disequilibrium asked 12/10, 2016 at 12:14
4
Solved
Imagine a json file with the following data:
[
{
color: "red",
value: "#f00"
},
{
color: "green",
value: "#0f0"
},
{
color: "blue",
value: "#00f"
},
{
color: "cyan",
value: "#0ff"
...
Fusil asked 17/7, 2012 at 23:18
8
Solved
I need a little bit help with JQuery UI Autocomplete. I want my textfield input.suggest-user display names from an AJAX request. This is what I have:
jQuery("input.suggest-user").autocomp...
Suanne asked 27/1, 2014 at 16:18
4
Solved
I have been working on this a while and can't seem to get anywhere. Basically I have the autocomplete on a bunch of inputs by class, but I need to get the specific inputs id to build the object to ...
Gonocyte asked 13/10, 2012 at 1:43
7
Solved
This seems to be a black hole: After an hour of searching the jQuery UI website, Stack Overflow, and googling, I've yet to find the most basic information of how to write the server side of th...
Alys asked 22/2, 2011 at 11:19
3
I am having an issue with jQuery Autocomplete plugin.
By searching mutltiple times with term "item", at first it works okay: css classes on mouseover are added nicely and everything is smooth. By ...
Fig asked 24/11, 2016 at 9:36
6
I'm trying to use jQuery UI Autocomplete to bring up a list of names of people in a MySQL Database. The basic function is working - when you type in two or more letters a list of possible names is ...
Fabri asked 7/2, 2013 at 9:56
11
Solved
I have the following script which works with a 1 dimensional array. Is it possible to get this to work with a 2 dimensional array? Then whichever item is selected, by clicking on a second button on...
Assiduity asked 27/1, 2011 at 10:46
3
Solved
I'm using the popular JQuery Autocomplete plugin below.
http://jqueryui.com/demos/autocomplete/
Currently if you type a phrase the drop down appears but when you click away it hides. This is fine...
Swordfish asked 23/6, 2012 at 9:39
6
Solved
I'm developing a form, and using jQuery UI Autocomplete. When the user selects an option, I want the selection to pop into a span appended to the parent <p> tag. Then I want the field to clea...
Ory asked 1/4, 2010 at 16:20
2
Solved
I think I have read every stackoverflow and google result available on this issue and they all seem to refer to the first jquery autocomplete plugin and not the current jquery ui autocomplete.
Wh...
Affirmative asked 23/5, 2012 at 18:51
3
I'm attempting to create a web page using the jQuery ui lib. My design uses a jQuery ui autocomplete on an input field at the top of a form. Immediately below this autocomplete input form are some ...
Mesa asked 23/8, 2010 at 17:1
8
Solved
I'm using the JQuery Autocomplete in one of my forms.
The basic form selects products from my database. This works great, but I'd like to further develop so that only products shipped from a certa...
Ammoniate asked 12/9, 2010 at 2:53
3
I have an AJAX request with jQuery "autocomplete", like code bellow:
var clientesList = [];
$("#clientes").autocomplete({
source: function (request, callback) {
$.ajax({
type: "POST",
url: ...
Priddy asked 13/9, 2016 at 3:44
2
I am using jQuery-ui autocomplete. Here is how i use it
<form action="go.php" method="post">
<input id="txt" type="text" />
</form>
<script>
$('#txt').autocomplete({
so...
Sue asked 24/4, 2016 at 22:32
2
Solved
I have been looking for a javascript (hopefully jQuery) timezone chooser/picker/control widget that I can include in my social-calendar/event-router web app.
Given that there are approximately 40...
Wash asked 21/5, 2011 at 0:56
5
Solved
Hello I am using jQuery UI autocomplete.
I am getting values and labels from the drop down area. I will write the value in a hidden input and use it later. I could do that, but I cannot write the ...
Anybody asked 11/10, 2013 at 7:42
3
Solved
Alright been racking my brain on this (im terrible at this) but yea ive tried reading all i can and still cant get it to work.
trying to do autocomplete with jquery ui
my json looks like this
{"...
Colcothar asked 11/7, 2012 at 14:55
4
Solved
Fiddle
I'm trying to style the sections inside the AutoComplete, but I don't know what to put in the CSS for the sections. I'm specifically trying to make:
color: #96f226;
border-radius: 0px;
bor...
Romanaromanas asked 24/7, 2013 at 15:24
4
I tried a solution regarding renaming 'autocomplete' to 'ui-autocomplete' (using JQueryUI 1.10.0, JQuery 1.8.3) and am still getting an error for:
TypeError: $(...).autocomplete(...).data(...) i...
Hypnology asked 22/1, 2013 at 15:14
3
Solved
I am using jQuery UI autocomplete and trying to implement the autoFocus option.
The documentation states the following:
If set to true the first item will be automatically focused.
I created a ba...
Cynical asked 23/11, 2011 at 21:46
4
Solved
I have a simple input like that
<input id="name-srch" type="text" data-type="string">
And my js (simplified)
$('#name-srch').autocomplete({
source: function (request, response) {
$.ajax(...
Misbehave asked 24/8, 2016 at 15:48
2
Solved
when I press down arrow thro' the results, its displaying the html elements like span,br, div. Is there a work around to style the results with out adding span, br, div to the results.Or how can I ...
Cysteine asked 19/7, 2017 at 18:4
12
Using jQuery 2.1.0 and jQuery.ui 1.11.0 Tested in iOS 7. iPhone and iPad Mini. Works on android and regular browsers.
The problem
We recently upgraded from jQuery UI 1.10.0 to 1.11.0 and now, whe...
Thieve asked 13/8, 2014 at 12:50
© 2022 - 2024 — McMap. All rights reserved.