The jQuery UI autocomplete widget, when added to an input field, enables users to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering.
1
vote
1answer
21 views
How can I reduce the size of jQuery UI?
Hi Guys I downloaded a search box suggestion from the link
Search box suggestion
In it there is a .js file http://code.jquery.com/ui/1.10.3/jquery-ui.js in this link
The .js size of 426kb is the ...
1
vote
2answers
28 views
Autocomplete issue with ASP.NET MVC 5
I created ASP.NET MVC5 project and just added some links to get working autocomplete jQuery plugin.
_Layout page
<head>
<meta charset="utf-8" />
<meta name="viewport" ...
0
votes
1answer
21 views
Search by name and family but display account number in jquery autocomplete
I'm working on a piece of code which has used jquery ui autocomplete component in order filter searched items. I have to configure it in order to be available to search based on multi ple factors, ...
0
votes
0answers
27 views
jquery-ui autocomplete is not showing result after space inserted
I'm using jquery-ui autocomplete widget to show some value from database. It works fine as far as I'm using single keyword, but when I insert space autocomplete menu showing no result. At first I ...
0
votes
0answers
29 views
Autocomplete jquery Widget manually text entering?
jquery + rails 4
I am using jquery Autocomplete Widget.
When I will enter 'A'in text_box particular 'A' cities list will come, fine
suppose I enterd city_name manually then its not working because I ...
0
votes
1answer
34 views
Jquery Autocomplete Select Event get json object
Hi I have an text field that implements jquery autocomplete. Everything is working great.
What I need now is in the "Select" event I want to be able to read the item json object. Right now the only ...
0
votes
0answers
10 views
rails3 jquery autocomplete how to get the id and full name while typing
1 - how can i get the id based on the first or last name selected?
2 - I was able to have it work for first name or last name, but i want to be able to have a full name (based on first or last ...
0
votes
0answers
23 views
Accent Insensitive Airport Autocomplete with Jquery
I have the following code which places a search for Airport names and codes at a Riobard google engine server, the code returns a JSON with the results, which are used to autocomplete an input on a ...
0
votes
1answer
24 views
Display autocomplete list into a angularjs modal directive, list is ok but display not
I expect to display jquery autocomplete list into a angularjs modal within a directive.
I handle to display the list but it is displayed behind the modal.
See demo
Thanks
-1
votes
0answers
36 views
Onchange event of Autocomplete - combobox not working with jquery 1.9.1
I am using jquery 1.9.1 in my website. The issue I am facing is that, I am trying to implement jquery Auto complete - combobox. I want to implement and on change event.
When I change the selection in ...
0
votes
2answers
18 views
using jquery autocomplete on repeatable fields
I am currently working on a small script which allows the user to add multiple text fields, here is a screen shot:
The user starts to fill in each field and then autocomplete kicks in. This works ...
0
votes
1answer
34 views
Issue on jQuey Ui Autocomplete From URL
Can you please let me know how I ca use the jQuery UI Autocomplete getting data from URL? currently I have a code which works fine foe me as:
var data = [
{"label":"Aragorn", "actor":"Viggo ...
0
votes
1answer
24 views
disable jQuery autocomplete dropdown
This is rather a simple question, but how do I disable the dropdown of the jQuery Autocomplete? When a user starts typing, I run my own function on the response callback. I don't need anything else to ...
2
votes
1answer
124 views
Jquery-ui autocomplete is not working properly in IE8
Jquery ui auto-complete is not working properly in IE8.I'm getting the value when start typing but after select the value,its not closing drop-down in IE8.But its working good in Firefox and IE9. ...
0
votes
0answers
69 views
Autocomplete textbox in MVC returning '[ ]' when values populated from databse and does not show the view with the textbox control placed in
I used the following code to implement autocomplete textbox in MVC. But when I debug the project it shows a pair of angle brackets in the browser. pls examine my code.
controller:
public ...
-1
votes
0answers
40 views
JQuery AutoComplete, when enter some letters take to first suggestion on submit
On searchbox when user enters some letters that are part of a suggestion, search button should take me to first suggestion on submitting the form.
Example: Search for 'Mar' is showing Marketing in ...
0
votes
2answers
66 views
How To Select First Element in AutoComplete dropdown list
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 not ...
0
votes
0answers
30 views
Update the jQuery autocomplete source on new entry
I'm using a jQuery UI autocomplete widget.
The source is a JSON file, but as an example I have a static array:
<script>
$(function() {
var availableTags = ...
0
votes
1answer
32 views
Is it possible to capture keydown globally on dynamically added text inputs?
I'm using the following global jQuery to show and hide a loading div for $.ajax calls:
$(document).ajaxStart(function(){
$("#loading").show();
}
$(document).ajaxStop(function(){
...
1
vote
1answer
92 views
How to append jquery ui autocomplete element?
I would like to know how to append jquery ui autocomplete elements once the page is active.
The idea is that there are two elements and I would like to add the third element once a submit button is ...
0
votes
0answers
48 views
Mutilple Items in Jquery Autocomplete Source
I am using jquery autocomplete source. I have used it many times and it works fine. I have an requirement to add multiple user name by comma seperated in textbox using autocomplete. I found it on ...
0
votes
0answers
28 views
Display datepicker instead of list in JQueryUI's autocomplete's pop-widget
For the search functionality of my webapp, instead of multiple input fields I'm giving my users a single field to enter their query, and they can use special syntax to make their queries more ...
0
votes
0answers
44 views
Jquery autocomplete custom render item for empty result throwing exceptions
My custom autocomplete look like this (using jquery ui 1.9.4):
$.fn.newAutocomplete = function (params) {
var $autocomplete = $(this);
var dataSource = params.dataSource;
var ...
0
votes
3answers
51 views
jquery autocomplete from php vars
<?php require_once('Connections/root.php'); ?>
<?php $q = mysql_query("SELECT * FROM performer"); ?>
<script> $(document).ready(function () {
$(function() {
var ...
1
vote
2answers
47 views
Why does my site alert “xssvuln” when I use jqueryui autocomplete?
I implement jqueryui autocomplete on my site but when i load that page, it alerts "xssvuln". but when i tried to run my site on localhost, theres no problem. Can you please help me fix this? And also, ...
0
votes
0answers
37 views
Need identifier 2 jquery UI autocomplete on one page
I have a problem with jQuery UI autocomplete. I have 2 autocompletes on one page, and for the results of one of them i need to change the css. But jQuery UI gives the autocomplete results (ul) an own ...
0
votes
1answer
66 views
jQuery autocomplete - fill 2 input fields with label and value
The input field I am searching in has to display the label after I select the item and the second field needs to be filled with the value the autocomplete-request gets from the source.
What am I ...
0
votes
1answer
59 views
jQuery - How to check if autocomplete is bound
Sometimes I need to know if an input field already has autocomplete bound to it. I haven't found any other way to do this other than:
$input.hasClass('ui-autocomplete-input')
Then I discovered that ...
0
votes
2answers
84 views
jQuery Autocomplete binding dynamic elements
What I'm trying to do is have the auto-complete bind to newly added inputs. Here's how I have it coded:
<input size="80" type="text" class="ccnotes" name="dwg_notes[]" id="1200" />
This is ...
0
votes
1answer
55 views
Knockout js and jquery auto complete cant get value
i am trying to get the value of jquery auto complete, this i can do, the problem is i have multiple auto selects on the same page that are in a foreach loop so it will always bring back the same value ...
0
votes
1answer
60 views
Dropdown Loses Focus As Soon As I Try to Select a Value
So the context is an MVC 4 internet application with razor views.
Here is the input field where I want the autocomplete dropdown to appear:
<td>
<div class="editor-field">
...
0
votes
1answer
124 views
Use custom CSS class on JQuery autocomplete
I have a JQuery autocomplete text box. I have a CSS style sheet which defines the theme for on-focus (say .custom-focus) and on-hover (say .custom-onhover) elements. The style sheet can change based ...
0
votes
1answer
102 views
How to get User entered text from jQuery UI combobox
I am using jQuery UI Combobox and I want to get the text entered by the user.
The user entered text may or may not have the matching element in the select list.
I want to display this user entered ...
0
votes
2answers
62 views
How to customize JqueryUI Autocomplete [closed]
I need to customize default auto-complete search box and replace the text with text and a image. This is my sample code.
<script>
$(function() {
var availableTags = [
"ActionScript",
...
1
vote
2answers
106 views
Assign JSON to autocomplete
I have the following string representation of an actual JSON object returned from my service:
[
{
"label": "#1 Pizza [99999]",
"value": "99999"
},
{
"label": "001 Test Facility ...
0
votes
2answers
187 views
Jquery UI Autocomplete get data from another select
I want to have an jquery ui autocomplete to get the data from certain mysql tables. So if the html select is from email, it will send param to the php to get data from email table. if handphone it ...
0
votes
0answers
68 views
Performing fulltext search with wildcards and PDO
Trying to use MySQL's MATCH AGAINST full text search where my search term is provided by jQueryUIs autocomplete widget as $_GET['term']. Furthermore, I wish to escape the term using PHP's PDO. ...
1
vote
2answers
2k views
How to get jQuery dropdown value onchange event
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 suggestions? ...
0
votes
1answer
205 views
How to get autocomplete textbox value
I am using jquery auotcomplete functionality. I have applied this to all textboxes starting with particular id and filter the response on the basis of current textbox value. But do not get the value. ...
1
vote
1answer
1k views
Unable to get value of textbox in jquery autocomplete
I am using jquery 1.9.1.js and jquery-ui-1.10.3.custom.min.js. I run on IE9 browser with the error "Unable to get value of the property 'toLowerCase': object is null or undefined". Below is my code.
...
0
votes
2answers
172 views
Jquery autocomplete suggestions - small font list
Jquery Autocomplete suggestions list font is very bigger ,I want to be small like typing in text box font need. how to restrict with small fonts in suggestions list ? Please see the below screen and ...
0
votes
0answers
28 views
rails3_jquery_autocomplete showing empty list of values
I'm trying to add autocomplete in my application by using the rails3_jquery_autocomplete gem. Everything is wired up as the documentation states. However, on the view I'm getting the following result
...
0
votes
0answers
116 views
jQueryUI Autocomplete keyword match returns 2 values from database
I am using jQueryUI Autocomplete widget successfully to search my database for rows matching the request term:
$("myinput").autocomplete({
//delay ajax request
delay: 500,
minLength: 5,
...
0
votes
0answers
297 views
jQuery UI Combobox Refresh Dropdown <ul>
I have an autocomplete with a custom source function:
source: function(request, response) {
var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), 'i'),
data = ...
0
votes
1answer
80 views
Error with autocomplete in colorbox
I load new form in colorbox pop-up window. In my form I use ui-autocomplete for two fields, but it does not work properly. When you type in the drop-down list appears under the colorbox, but it is ...
0
votes
0answers
119 views
jQuery combobox (with autocomplete) scrolls to top in IE
I'm having strange behavior with the jQuery combobox. The combobox isn't a regular jQuery plugin but can be achieved with the autocomplete plugin. They have an example on the jQuery ui site.
I've ...
0
votes
1answer
72 views
jQuery autocomplete with MySQL and PHP results don't show up
I have a problem with the plugin in jQuery it doesn't show me any results up. I dont where I made the mistake?
thats my newJob.php:
<form method="post" action="newJob.php">
...
0
votes
1answer
98 views
Why doesn't this very basic JQuery autocomplete work when using a local array of objects?
When I use a simple local array I have no problems. I have no problems populating that array from MySQL, too. But when I try to load an array of object, even a local array, it doesn't work. What am ...
0
votes
1answer
126 views
JQuery UI AutoComplete - can't get data typed in the input field
I've changed the standard method of Jquery UI autocomplete to use POST instead of GET:
$(function () {
var data = $(this).val();
var dataString = 'location=' + data;
...
2
votes
2answers
130 views
Jquery addRow and autocomplete
I have a table I would like to use autocomplete on a column.
(medSearch is the class set for this column)
I use the Jquery's autocomplete code
autocomp_opt={
source: function(request,response){
...