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.
Questions tagged [autosuggest]
895 questions
10
votes
16 answers
How to fix "No Suggestion" on ctrl+space on xml file android studio?
I can't get any suggestion from my xml layout file. What must I do to fix the problem?
I have tried to invalidate/restart Android studio, enable and disable, deleting build folder, .idea folder, .iml file, and I have tried to make a new project but…

Nanda R.M
- 203
- 2
- 3
- 13
10
votes
4 answers
jQuery plugin that suggests/autocompletes within a textarea
Is there a jQuery plugin that suggests/autocompletes within a textarea?
What I want is to have suggested words or autocompleted text proffered to the user in a textarea like the example image below:

Trufa
- 39,971
- 43
- 126
- 190
10
votes
1 answer
Auto-Completion In wxPython wxComboBox
I've been trying to make a ComboBox which would suggest options as you type, much like an IDE's code suggestions/code-sense, or googles suggestions when you type in a search.
The suggestions would be the items from the ComboBox dropdown, which…

FrederikNS
- 5,562
- 2
- 22
- 36
10
votes
8 answers
JavaFX TextField Auto-suggestions
I want to make this TextField have suggestions feature just like in Lucene. I've searched all the web and I just find it for ComboBox.
TextField instNameTxtFld = instNameTxtFld();
private TextField instNameTxtFld() {
TextField txtFld = new…

Surya Hardiansyah
- 121
- 1
- 1
- 6
10
votes
1 answer
Elasticsearch completion suggest search with multiple-word inputs
Using the Elasticsearch completion suggester I have problems returning multi-word input suggestions matching a one-word query.
Example structure:
PUT /test_index/
{
"mappings": {
"item": {
"properties": {
…

Neman
- 1,237
- 2
- 13
- 16
10
votes
3 answers
Navigating the Content Assist List in Eclipse
Here are the ways the Eclipse documentation states you can navigate the Content Assist list:
You can use the mouse or the keyboard
(Up Arrow, Down Arrow, Page Up, Page
Down, Home, End, Enter) to navigate
and select lines in the list.
But all…

volni
- 5,196
- 8
- 38
- 44
10
votes
5 answers
How to implement Google Suggest in your own web application (e.g. using Python)
In my website, users have the possibility to store links.
During typing the internet address into the designated field I would like to display a suggest/autocomplete box similar to Google Suggest or the Chrome Omnibar.
Example:
User is typing as…

Federico Elles
- 891
- 3
- 14
- 24
10
votes
1 answer
How to get Solr Suggester to return spelling suggestions as well
I'm currently integrating Apache Solr searching into my platform and using the Suggester functionality for autocompletion. However, the Suggester module does not return spelling suggestions as well, so for example if I search for:
shi
The suggester…

newbie
- 408
- 1
- 4
- 14
9
votes
5 answers
"suggest" feature for textboxes in a rails app
I'm looking for an easiest way how to implement the "suggest" feature for a text entry field in a Rails application. The idea is to complete names stored in a database column, giving the user a drop-down menu of possible matches as he types.
Thanks…
Travis
8
votes
1 answer
solr 5.3 - suggest feature not working
I added the search component and the request handler in the solrconfig.xml file, but I get an error saying
"No suggester named default was configured" when I type
../../suggest?suggest.q=A&wt=json&suggest.build=true&indent=true&debugQuery=true…

Anusha
- 647
- 11
- 29
8
votes
1 answer
Elasticsearch: query for multiple words across multiple fields (with prefix)
I'm trying to implement an auto-suggest control powered by an ES index. The index has multiple fields and I want to be able to query across multiple fields using the AND operator and allowing for partial matches (prefix only).
Just as an example,…

Fab
- 155
- 2
- 6
7
votes
5 answers
How to stop edittext auto suggestion with email input type Programmatically in Android
How to disable auto suggestion with input type : textEmailAddress, while using like below the auto suggestion will appear, exactly want stop auto suggestion with email keyboard.
Used Code

logeshpalani31
- 1,416
- 12
- 33
7
votes
4 answers
Magento - Autocomplete Suggest Search Not Working
I have incorporated a new theme in Magento v1.4.2.0, and have completed all the necessary changes, but only following true Magento way of overriding the Magento modules & methods.
My only problem is that the auto complete suggest search…

Knowledge Craving
- 7,955
- 13
- 49
- 92
7
votes
1 answer
Visual studio not highlighting suggestions while typing
I use visual studio with C++. When typing a word, visual studio makes suggestions, as expected, but does not always highlight them. Here is what I mean:
I type "stri", and "string" gets highlighted, and this allows me to press enter and complete the…

Denis Delinger
- 127
- 6
7
votes
1 answer
Autocomplete/search suggestions with Material Design Lite?
so there's no built-in mechanism in material-design-lite v1.x for "chips" or lists to be attached to an input/search field, and/or be populated/displayed in response to an event.
I found this: http://immybox.js.org/ — but is there a best practice in…

Ben Guild
- 4,881
- 7
- 34
- 60