Autocomplete is a UI feature provided by applications, where the program predicts a word or phrase that the user wants to type without the user actually typing it completely.
0
votes
0answers
3 views
jquery autocomplete with checkboxes removing as search
On a page I have a search (input) box and below a few checkboxes with labels.
The idea is as people type into the search boxes the elements not required are removed and only one ones that are within ...
0
votes
0answers
10 views
jQuery Autocomplete Result List Display Issue in Chrome
I'm using jQuery 1.9.1 and jQuery 1.10.3. My autocomplete works fine in both FireFox and Safari. When I test it in OSX Chrome, the result list displays perfectly the first time it shows up. After ...
0
votes
2answers
32 views
Context aware auto-complete [closed]
I'm trying to implement an autocomplete algorithm for a programming language. I want it to be context aware, meaning that suggestions must appear relative to the statement the user is currently ...
0
votes
0answers
7 views
Create autocomplete address field from google maps api avoiding the limits
I have used google maps api to create an address field that has autocomplete with the user starts entering the address. I have hit the daily limit and have read that it's possible to do client side ...
0
votes
0answers
7 views
Switch between kendo dropdown to Kendo AutoComplete
I am using a Kendo grid in MVC with customized filter menu as below:
http://demos.kendoui.com/web/grid/filter-menu-customization.html
I was trying to switch Kendo dropdown (the second dropdown in ...
0
votes
0answers
14 views
IOS Autocomplete Table Blocked By UIGestureRecognizer
I've seen this question around a few times, and I believe I've implemented the recommended solution, but I still can't seem to get my app to work. The problem is, I have a UIGestureRecognizer in my ...
0
votes
0answers
26 views
CheckBox not working with jQuery autocomplete
I am using jQuery's autocomplete plugin to create checklist.
Had a series of problems but thankfully got solutions for all but 1.
My problem left is that when I click on any checkbox it doesnt retain ...
0
votes
0answers
33 views
How to use Regexp.new() in Ruby to search for Integer value in DB?
I have some code in my controller which functions as a search in the database (mongo) :
@job_results = Job.where({:merchant_id => admin,:$or => [
{:job_number => ...
0
votes
0answers
34 views
searching mysql using like statment, or select distinct and search in php for autocomplete
i have a clinic application that use ICD-10 database, the table contain more than 40,000 record of name,code,id
example
|ID|code|name
|1 |R09 |common cold
|2 |T10 |acute inflammation
etc...
and i ...
0
votes
1answer
19 views
jqgrid autocomplete on dynamic local source
Im trying to work form editing with autocomplete .. its source is different every time user opens edit form
when opening edit form :
beforeShowForm: function(frm) {
var id = ...
0
votes
0answers
35 views
jQuery AutoComplete displaying behind elements after first use
SOLVED:
Ended up being that the Z-index of the task editor div was being set higher than the autocomplete when the div was appended to the body. Now I just feel silly spending two hours with this.
I ...
0
votes
0answers
20 views
jQuery Autocomplete uncaught type error
I have an auto-complete set up and it works perfectly fine. However, I get an error message: Uncaught Type error: Cannot read property 'length' of null
Code:
$( ".part_number" ).autocomplete({
...
0
votes
0answers
25 views
Autocomplete in datagrid results in duplicate value
We have a DataTable with editMode="cell". The autocomplete celleditor works okay when the user actually selects something, but if he moves to another cell without doing anything, the value displayed ...
0
votes
1answer
21 views
KendoUI Autocomplete - Change event not firing when selecting the same thing twice
KendoUI Autocomplete isn't allowing me to select the same item twice in a row. If I select an item, then select another, it will of course work, but not back-to-back.
By placing ...
0
votes
1answer
41 views
Autocompletion keeps history on the inputfield and sends multiple requests
I have the following code:
$("#city").on('change', function() {
$("#keyword").autocomplete('<?php echo base_url();?>index.php/formhandler/autocomplete', {
width: ...
2
votes
3answers
50 views
Autocomplete not allowing spaces
I am using autocomplete in my site like this:
$(document).ready(function(){
$('input[type="text"]').each(function(){
var $this = $(this);
$this.autocomplete({
...
0
votes
0answers
39 views
Eclipse - no incremental auto-complete
I have a problem with eclipse auto-complete which I would very much like to solve. I'm working with pure-java files in an environment which used to work great. When I use Ctrl+space the auto complete ...
0
votes
1answer
30 views
No result appear in the autocomplete
The action return a JSonResult and the content is correct. I missed something in the autocomplete code ?
HTML :
<input type="text" class="span12" id="mytextbox" />
The javascript :
...
0
votes
1answer
15 views
how to save an entire object in a variable on a kendo autocomplete selection
i need help about a kendo autocomplete widget...
Maybe this is a stupid question, but i just can't reach the solution!!!
My kendoAutoComplete widget, gets data from a c# webservice:
...
0
votes
0answers
16 views
How to autocomplete in Python programs on MonoDevelop
I am trying to use MonoDevelop to write Python programs on Ubuntu 12.04. How do I get the autocomplete to work? Is there some keyboard shortcut I need to use?
0
votes
2answers
32 views
jquery - Facebook tagging
Is there a plugin that has similar behavoir like the Facebook tagging?
Whats so special about this, is that it features:
Autocomplete in between typed words
Special outputted html (which is synced ...
1
vote
2answers
36 views
How to restrict the user inputs to the choices in autocomplete?
I have created an auto complete text-view which picks up its data from a particular set of values. I want the user to be able to select only from the provided values and not to be able to go ahead ...
1
vote
0answers
27 views
How can i place the UITextView auto-complete bubble?
I placed UITextView for simple chat app.
But the auto-complete bubble was hidden by keyboard.
How can i place the auto-completion bubble on top of the UITextView's input?
1
vote
1answer
22 views
UI autocomplete and IE8
This is my first question on the site, but I have a real problem. Im rewriting the code of my website to make it work on IE... And on IE8 only this code for a multiple autocomplete input crashes :
...
2
votes
0answers
18 views
Disable & enable auto-correct dynamically in the same html text area
I'm trying to build a twitter like autocomplete and am having trouble disabling autocorrect dynamically.
Essentially what I'm trying to do is have auto-correct="off" when someone hits # and ...
0
votes
1answer
79 views
+200
Programmatically select the first suggestion in django-autocomplete-light
How can I select the first given option? I'm feeding the autocomplete widget with the data from reverse geocoding results (city) basing on user's location. I have a database with cities and I need to ...
0
votes
0answers
26 views
autocomplete = off does not work when I try to disable remember me
I'm working on a website, and I put the login form and signup form on the same page. When I let the browser save password, the signup form's nickname input and password input are also auto-completed. ...
0
votes
1answer
23 views
how initalize a kendo autocomplete widget at the document.ready() function
I have a problem with a kendo autocomplete widget.
My autocomplete widget, gets data from a webservice c#, and it works fine.
But i see that the widget gets the data from the webservice when i type ...
1
vote
0answers
22 views
GoogleMaps API V3 Polygon dblclick auto-complete
I have created a plotting system using the GoogleMaps Javascript API V3, which allows users to draw out and save polygons.
I have received a number of complaints concerning the autocompletion of ...
1
vote
1answer
37 views
JQuery Autocomplete drop down layout issue
I am implementing a JQuery autocomplete on a HTML page. Unfortunately, the drop down layout is not a clean box with entries (see http://jqueryui.com/autocomplete/), but rather a ul-like list of links:
...
0
votes
1answer
30 views
jquery autocomplete bug? or wrong version?
so let say i have an json object which i get from asmx file / web service file.
[
{
"UserName": "hl",
"FirstName": "hendra",
"LastName": "lim"
},
{
...
-1
votes
0answers
13 views
Autocomplete widget: Select remaining suggestion with enter
How can i select remaining suggestion with enter? for example if the only suggestion is 2013 I want to press enter to select it.
What I've tried:
$("#fromYear").autocomplete({
source: ...
0
votes
2answers
35 views
Select Text on Focus of Input Element Generated by jQuery UI
I'm using the jQuery UI AutoComplete Combobox option as illustrated here. This will start filtering the shown results immediately when you begin typing, but if an element is already selected, then ...
0
votes
2answers
68 views
my jquery autocomplete function not working
so let say, i am using ajax to get a list of object from a asmx file, and after that i parse my list of object into json object, the output will be like this
[
{
"UserName": "hl",
...
2
votes
1answer
34 views
Autocomplete : Search for default term
I am using Jquery Autocomplete for search on my website. If I type god in the box, it returns
The Godfather
The Godfather II
The Godfather III
If I select any of the 3 values, it should go to the ...
0
votes
1answer
22 views
Evaluating JSON from popular auto-suggests
I was evaluating the various ways in which the big guys implement auto suggest. These are my observations.(Search string used was "ab") Questions towards the end.
Yahoo tries something like this, ...
0
votes
0answers
14 views
Mac web deveopment IDE with Auto-complete, docs, error checking
I just completed my first Android app using Eclipse and am starting to make a webapp with HTML, CSS, and Javascript (and maybe PHP) on Mac. I've tried Coda and TextMate and have had a look at ...
0
votes
0answers
21 views
Need to Improve Sublime Build Config With G++
I'm working in Sublime Text 2 and need a build config for c++.
My requirements are:
the compiled program to runs in an external window (but I've fixed this with the shell and start command)
...
0
votes
0answers
20 views
jquery-ui autocomplete results not visible on first open
I am using a jqueryui autocomplete attached to a form input element that first appears dynamically when a jqueryui dialog is created. The problem is that the autocomplete menu does not appear on the ...
0
votes
0answers
15 views
Can one change the scrolling behavior of Jquery UI Autocomplete?
I'm using Jquery UI Autocomplete, pretty much verbatim to the example here http://jqueryui.com/autocomplete/#maxheight
In that example you'll see that if you scroll to the bottom of the list, the ...
-1
votes
0answers
23 views
bind data into a kendoAutoComplete [closed]
need help about a kendo autocomplete binding from a webservice, with json data...
i tried the following code, but it do not works,
aspx page:
<input class='k-textbox' id='comune_w' />
...
1
vote
0answers
36 views
jQuery AutoComplete combobox issue on IE7/8
I want to use jQuery AutoComplete on a web page. The page is embedded inside an IE Control in an application. The problem is that in IE7 and 8, the control does not render properly, as seen in the ...
0
votes
2answers
42 views
autocomplete and remove default value
I want to do 2 things as soon as the input-box gets focus:
autocomplete (default dropdown)
remove the default-value as
$(".keywordbox > ...
0
votes
1answer
25 views
How to use properly the copy fields on solr for autocomplete
I want to use the "autocomplete" for a search engine on my site.
So, I have a field called shortdesc with the following definition:
<field name="shortdesc" type="text_de" indexed="true" ...
0
votes
0answers
20 views
Is there any auto-fill feature in excel 2010 which can leverage data from another sheet in the same workbook?
I will give an example of what I am trying to achieve here.
Suppose I have a worksheet with two tabs 'student fee payment', 'student data'.
Student Data has the general information about all ...
0
votes
0answers
51 views
Autocomplete textbox with two option to search in c# winform
This is my code on my FormLoad-event
SqlDataReader dReader;
SqlConnection conn = new SqlConnection(MyClass.GlobalConn());
conn.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
...
0
votes
1answer
14 views
jqueryUi autocomplete html and desgin
I'm thinking of adding jqueryUi autocomplete to my site, few questions I can't find an answer to:
- Can I remove/replace the the ul tag which holds the responses? I managed to replace the li tags with ...
0
votes
0answers
19 views
How to obtain a region polygon from Google Places Autocomplete
I am trying to use google places autocomplete to search for a place, get its polygon region from mapques/nominatim and render the result in google maps.
Here is where I am having difficulties:
...
0
votes
1answer
35 views
Adding CSS to the input (type = text) in the form under a DIV
I have a following form on which I want a add an autocomplete=off to any input with type text.
(In the following code I have one such input though)
<form action="#" method="post" ...
0
votes
0answers
29 views
Using Prefetch Filter with typeahead.js (Using basic options)
I am using typeahead.js (https://github.com/twitter/typeahead.js). I am using the prefetch options and need to parse the returned data. It's not throwing an error, its not doing much of anything. I've ...




