Tagged Questions
0
votes
1answer
9 views
multiple autocomplete search input fields
I am having a bit of a problem with the jQuery plugin for autocomplete search, I can't manage to have two fields with autocomplete search in the same time. Can someone help me?
This is my html + ...
0
votes
1answer
13 views
jquery ui autcomplete to access a search function within a class
I have a class and within it a user search function:
PHP:
private function searchUsers() {
if (isset($_REQUEST['term'])) {
$params = array( ':searchQ' => $_REQUEST['term'] . '%' );
...
0
votes
1answer
8 views
jqueryui combobox appearance wrong in table inside dialog
I'm using the JQuery UI code for the autocomplete combobox. I've made no changes at all other than to specify the id of the selects to be made into comboboxes. It works OK on the main page, but when ...
0
votes
0answers
9 views
jQuery TagIt Allow New Values
I'm using jQuery Tagit and the integrated jQuery UI Autocomplete integration to try and get a working tag system with suggestions based on existing tags. The problem is that right now the autocomplete ...
1
vote
2answers
47 views
Autocomplete with jquery and JSON
I'm completly new to javaScript and all this stuff.
I need to implement autocomplete so I started with simple example. Here the code:
<html lang="en">
<head>
<meta charset="utf-8" ...
0
votes
0answers
26 views
how to use jQuery UI Autocomplete to show results in table
I am using jQuery UI autocomplete plugin.
Right now I have been able to use the plugin to show results in the popup but I would like to modify the results rendering to create a table with three ...
0
votes
1answer
29 views
JQueryUI autocomplete - custom rendering; focus not working
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:
...
0
votes
2answers
45 views
jQuery UI autocomplete copy input value to another input
I'm trying to copy input value from JQUI Autocomplete to another input, that also has autocomplete function enabled.
Here's what i have in HTML
<label for="LocationFrom">Location</label> ...
2
votes
1answer
44 views
Styling JQuery UI Autocomplete
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;
...
0
votes
3answers
65 views
How to display html in jquery autocomplete results in Rails
I am populating a set of results for jquery ui autocomplete in Rails:
<%= text_field_tag('user', "", :placeholder => 'Enter a user...', class: "users",
data: ...
1
vote
1answer
30 views
How to focus the last Element in a JQuery UI Autocomplete
I use JQuery Ui Autocomplete and position the suggestion box above the input field as shown in the image below. When I use autoFocus: true I can set a focus on the first element of the list.
Now, I ...
0
votes
4answers
73 views
jQuery-UI autocomplete doesn't display in jQuery-UI dialog
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 ...
1
vote
1answer
119 views
Jquery UI Autocomplete up key clears html in my div
I'm using jquery ui autocomplete on a content editable div. Using @ as a trigger. The problem is that even though I set the focus event to return false:
focus: function () {
return false;
},
...
0
votes
0answers
64 views
jquery autocomplete multislect backspace issue
I am using Jquery autocomplete to enable autocompleting multiple values into a single field.
its works fine until i use backspace in the input field.
when user make one or more sections each time id ...
1
vote
1answer
34 views
jQuery .val() not working with jQueryUI autocomplete
I've got two jQueryUI Autocomplete's on a single form. One feeds off the other. My goal is to have the first field autocomplete and populate the IDs to the (intended to be) hidden fields. The ...