Questions tagged [autosuggest]

Autosuggest is an UI feature provided by applications, where the program predicts and shows a list of possible options that the user wants to choose from without the user actually typing it in completely.

838 questions
71
votes
9 answers

Algorithm for autocomplete?

I am referring to the algorithm that is used to give query suggestions when a user types a search term in Google. I am mainly interested in: 1. Most important results (most likely queries rather than anything that matches) 2. Match substrings 3.…
49
votes
12 answers

Android programmatically disable autocomplete/autosuggest for EditText in emulator

Targeting Android 2.2 I have read the answers to the following questions: Turn off autosuggest for EditText? Android: Multiline & No autosuggest in EditText I have tried the following variations on the…
gyoda
  • 1,043
  • 2
  • 10
  • 22
37
votes
15 answers

.autocomplete is not a function Error

below is my My Code
user2454340
  • 1,080
  • 2
  • 10
  • 15
32
votes
5 answers

How to make a combo box with fulltext search autocomplete support?

I would like a user to be able to type in the second or third word from a TComboBox item and for that item to appear in the AutoSuggest dropdown options For example, a combo box contains the items: Mr John Brown Mrs Amanda Brown Mr Brian Jones …
Brendanator
  • 813
  • 1
  • 8
  • 14
30
votes
7 answers

Create a autocompleting textbox in Java with a dropdown list

I want to create a auto-suggest text box which would query the database at each key release event. That part is easy, but I want to give nice visual to it. Something similar to the auto-suggest text box we see in websites like searching in…
jairaj
  • 1,763
  • 4
  • 19
  • 32
28
votes
6 answers

Eclipse auto suggest list very slow

By auto suggest, I mean that intellisense that pops up when I write something. My problem is that if I write something like btnMyButton. after typing . I get to wait a few seconds until eclipse populates the list with events for button. I am using…
Alin
  • 13,513
  • 36
  • 111
  • 198
28
votes
13 answers

jQuery Autocomplete using extraParams to pass additional GET variables

I am referring specifically to the jQuery Autocomplete v1.1 plugin by Jörn Zaefferer [source: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/] as there seems to be quite a few variations of this plugin. I'm trying to pass additional…
paperclip
  • 2,080
  • 6
  • 26
  • 35
28
votes
2 answers

Fish-style Autosuggestion in Zsh?

Is there a way to do the type of auto-suggestion Fish does in Zsh?
Eli
  • 31,424
  • 32
  • 127
  • 194
24
votes
3 answers

solr suggester not returning any results

I've followed the solr wiki article for suggester almost to the T here: http://wiki.apache.org/solr/Suggester. I have the following xml in my solrconfig.xml:
Marquis
  • 510
  • 1
  • 3
  • 13
24
votes
5 answers

iOS TextField - autocomplete adds blank character

I have a problem with a UITextField. When I have email autocomplete option enabled, I can select an email from the list, but iOS automatically adds blank space at the end of the text field. Is it an iOS bug or there is something I can do to prevent…
iOSDev
  • 653
  • 1
  • 8
  • 18
20
votes
4 answers

Searching for multiple partial phrases so that one original phrase can not match multiple search phrases

Given a predefined set of phrases, I'd like to perform a search based on user's query. For example, consider the following set of phrases: index phrase ----------------------------------------- 0 Stack Overflow 1 Math…
Misha Moroshko
  • 148,413
  • 200
  • 467
  • 700
19
votes
9 answers

Algorithm for suggesting products

What's a good algorithm for suggesting things that someone might like based on their previous choices? (e.g. as popularised by Amazon to suggest books, and used in services like iRate Radio or YAPE where you get suggestions by rating items)
OJW
  • 4,232
  • 6
  • 35
  • 45
19
votes
6 answers

Simple Suggestion / Recommendation Algorithm

I am looking for a simple suggestion algorithm to implement in to my Web App. Much like Netflix, Amazon, etc... But simpler. I don't need teams of Phd's working to get a better suggestion metric. So say I have: User1 likes Object1. User2 likes…
Dan.StackOverflow
  • 1,253
  • 4
  • 17
  • 26
18
votes
8 answers

How to correct the user input (Kind of google "did you mean?")

I have the following requirement: - I have many (say 1 million) values (names). The user will type a search string. I don't expect the user to spell the names correctly. So, I want to make kind of Google "Did you mean". This will list all the…
Sabya
  • 10,244
  • 16
  • 62
  • 90
17
votes
1 answer

iOS 8 Xcode how to remove QuickType on UIKeyboard ( auto complete / auto suggest )

UIKeyboard with QuickType! It is bad to know that there is no sufficient space of screen on iPhone devices, now apple has been taken more room by adding QuickType. How can I remove it for items that do not need quicktype's auto complete, auto…
Mike Zriel
  • 1,141
  • 1
  • 12
  • 26
1
2 3
55 56