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
9
votes
2 answers

Elasticsearch : Completion suggester not working with whitespace Analyzer

I am new to Elastic search and I am trying to create one demo of Completion suggester with whitespace Analyzer. As per the documentation of Whitespace Analyzer, It breaks text into terms whenever it encounters a whitespace character. So my …
9
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
  • 4,366
  • 2
  • 19
  • 32
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
  • 551
  • 7
  • 25
8
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
  • 877
  • 2
  • 8
  • 13
7
votes
4 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
logeshpalani98
  • 1,112
  • 9
  • 25
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,791
  • 12
  • 46
  • 90
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,205
  • 5
  • 27
  • 49
7
votes
4 answers

UWP Binding to AutoSuggestBox in MVVM

i am invoking the QuerySubmitted command of the AutoSuggestBox control in UWP. the command binds to ICommand in the view model. the problem is it requires to accept AutoSuggestBoxQuerySubmittedEventArgs which is pure UI and it's not acceptable in…
kaycee
  • 1,099
  • 4
  • 23
  • 39
7
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
  • 125
  • 1
  • 6
7
votes
1 answer

Can phpstorm suggest variables from included files?

I have included some files in my php script using include and I am using variables and functions defined in my included files. Is there any way to configure PhpStorm in such way to show this kind of variables in the suggestions list?
Cornelia Secelean
  • 403
  • 1
  • 4
  • 14
7
votes
3 answers

Changing the behavior of the Eclipse auto-complete (Content Assist)

When I am programming in Eclipse, the auto-complete \ suggestions box usually opens when typing a dot (for example after typing System. or SomeObject., and stays open while typing a similar code to any of the suggested. This is what I'm talking…
amiregelz
  • 1,718
  • 7
  • 20
  • 36
6
votes
3 answers

HTML Form text input suggestions box

I am attempting to modify one of my text input boxes in a form that I have. I would like suggestions to pop up as the user types. Basically, I would like to emulate the "Tags" box that is on the ask question pages here on Stack Overflow, but with…
Ross Larson
  • 2,193
  • 2
  • 25
  • 36
6
votes
5 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…
6
votes
1 answer

AutoSuggestBox not showing results

I'm having trouble displaying the results in the AutoSuggestBox on Windows Phone 8.1. I'm using MVVM Light to bind my itemsource to the Autosuggestbox.
tim
  • 5,287
  • 6
  • 34
  • 67
1 2
3
55 56