Tagged Questions

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.

learn more… | top users | synonyms (1)

17
votes
8answers
2k views

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 ...
11
votes
6answers
2k views

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 ...
11
votes
10answers
2k views

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 ...
8
votes
5answers
3k views

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 ...
7
votes
5answers
2k views

Algorithm for autocomplete?

I am referring to the algorithm that is used to give query suggestions when a user type a search term in google. I am mainly interested in how google algorithm is able to show: 1. Most important ...
6
votes
5answers
2k views

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: ...
6
votes
1answer
3k views

GWT: Suggest box with multiple words

I need to make suggestion TextBox where user can write some keywords ( to search across file archive with specified keywords ). But keywords can be entered sequentially with some delimiter. for ...
5
votes
1answer
135 views

Hierarchical Autosuggest

I am designing an autosuggest feature on a quick-search box. Suggestions will include small icons, multiline text, etc. The application is handling orders. The search field will recognize a variety ...
5
votes
4answers
2k views

Efficient AutoSuggest with jQuery?

I'm working to build a jQuery AutoSuggest plugin, inspired by Apple's spotlight. Here is the general code: $(document).ready(function() { $('#q').bind('keyup', function() { if( ...
5
votes
5answers
1k views

“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 ...
4
votes
2answers
533 views

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: <searchComponent ...
4
votes
4answers
2k views

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 ...
4
votes
1answer
291 views

Solr ShingleFilterFactory auto-suggest

I'm using Solr ShingleFilterFactory for auto-suggestion. This is my field configuration : <fieldType name="textSpellShingle" class="solr.TextField" positionIncrementGap="100"> ...
4
votes
2answers
400 views

Google's predictive text as you type code example - w/o auto suggest dropdown menu

Google's new predictive text predicts the search "as you type" in the box by showing the next characters in light gray font. Does anyone know of any code that does this? I am aware of the typical ...
4
votes
1answer
397 views

Is there a flag you can set to disable auto suggest behavior for an HTML field on iPad/iPhone/Android/etc

For desktop browsers I can set this on a field to disable the auto-completion list based on recent entries. <input type="text" name="username" autocomplete="off"/> ...
4
votes
1answer
356 views

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 ...
4
votes
3answers
1k views

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 ...
4
votes
2answers
1k views

lite weight and SIMPLE jquery auto suggest/autocomplete?

all i need is a very simple auto complete that suggests words that have the letters the user is typing in them, very simple, nothing fancy, either inline or from an external file, i only need about 20 ...
4
votes
2answers
981 views

Suggest list in google maps search input

We need to create search input field like it is on _http://maps.google.com The key functionality is suggest list with appropriate results. We have not found this feature in API. Analyzing ...
4
votes
3answers
3k views

Google like autosuggest with Solr

I'm currently using Solr with Terms Component and Jquery Autosuggest which works quiet good. However, this construct is limited to one autosuggest word (it autocompletes only the first word). Is it ...
4
votes
8answers
7k views

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 ...
3
votes
2answers
79 views

jQuery plugin for a simple input box for comma-separated tags with autosuggest

I'm searching for a jQuery plugin with following functionality: It should display an input box, in which tags would be put in like so: 'bees, beads, beards'. When a user is typing a tag, it should ...
3
votes
2answers
318 views

Json is being cached incorrectly

Hy! My JS is requesting a JSON from controller to edit an existing object, a populated dropdownlist. Then, the View send the actual values from my autosuggest dropdown, to lately the new value be ...
3
votes
1answer
256 views

How can I speed up Eclipse Proposals? they are very slow

I am using Eclipse for Java development. One thing that I like with IDE's are when they propose the method names that I'm typing, this improves my productivity and keeps me from misspellings. E.g my ...
3
votes
1answer
60 views

Preventing the browser's autosuggest when using an autocompleter with jQuery

I'm using a small autocompleter function with jQuery. That works well. The problem is that when I'm typing a text in the input, my browser suggests me some of the previous texts I've typed before. ...
3
votes
3answers
125 views

How to get back auto-completion after misspelling a method name in Eclipse?

When I am coding Java in Eclipse I like the auto-completion feature. With that I mean the popup with method-names that comes when you start typing in a method name for an object. Or maybe it's called ...
3
votes
3answers
164 views

How to do a search from a list with non-prefix keywords

I am programming a program to search the name from the list and I need to find them even if the keyword is not in front of the names (that's what I mean non-prefix) e.g. if I my list is the music ...
3
votes
5answers
2k views

Free country/city suggestion list/database

I'm looking for something similar to facebook suggestion list with cities and countries. You can see what I'm exactly talking about when you try to create new event in facebook, click to add address, ...
3
votes
1answer
199 views

How google suggest caches queries on client side?

Well, I was playing with Google query auto completion and noticed funny thing: if I for example type in "m" letter, it performs Ajax jsonp query. Then if I'll refresh my page and enter "m" letter ...
3
votes
3answers
518 views

How does the AutoSuggest feature for tags in StackOverflow avoid querying on every key stroke

I am trying to implement a similar feature like the autosuggest feature for tags available below the text area on this site using Jquery. I am trying to figure out how the requests are sent after a ...
3
votes
4answers
812 views

What approach to take for caching unique auto-suggest lists for users?

I am making an app (asp.net/c#) that will autosuggest a couple fields that users type in. Each user will end up building their own auto-suggest list. Every time they add an item, if it's a new word, ...
2
votes
1answer
199 views

Turn off Word Suggestion with Inputscope=“Search”

I have a Search Box which is an AutoComplete box In my view having word suggestions with auto complete box makes no sense and occupies additional screen space, but I like Search keyboard layout, so ...
2
votes
1answer
75 views

Coldfusion stripping leading zeroes in autosuggest

I've just encountered CF's unwanted "feature" which involves stripping leading zeroes from the values returned to an autosuggest input. I was thinking I could prepend some character to the values and ...
2
votes
1answer
105 views

jQuery UI autosuggest search box with results presented in similar format to linkedin's search

I'm trying to create an autosuggest search box using jQuery UI and I would like it if I could present the results similarly to how linked-in presents theirs within groups (screenshot attached). Does ...
2
votes
1answer
97 views

Ask Emacs to create function (e.g. Eclipse/IntelliJ suggest/fix feature)

I am editing Clojure code in Emacs23, I am pretty new and I was wondering if there is a feature in Emacs to create missing function? It would be similar to Ctrl+1 in Emacs or Alt+Insert => Create ...
2
votes
1answer
236 views

Delphi: Win7 side effect with forms

Win7/x64, Delphi 6 Prof. Win7 drives me crazy with his side effect. I describe it: When I force the suggestion with Ctrl+Space, or Delphi do this automatically, the Delphi don't show the suggestion ...
2
votes
4answers
235 views

GWT Suggest TextArea widget

Did anyone see Suggest or AutoComplete TextArea GWT Widget? It doesn't have to be completely the same as SuggestBox. I'm just wondering about something being out there already before I dive into ...
2
votes
2answers
685 views

using autosuggest to fill in an input text field after user enters their input, using jquery

I am trying to use the autosuggest plugin of jquery to take a users input, jquery that input to a php mysql script to get information, then replace the users input with what was retrieved from the ...
2
votes
1answer
302 views

Is there an api for Google News autosuggest?

A few days ago I was introduced to the Google autosuggest api here: http://google.com/complete/search. I built a little Yahoo Pipe to pull out the top 5 suggestions from the 5 biggest English speaking ...
2
votes
5answers
669 views

Imitate Google suggest with AJAX and PHP

I want to imitate Google suggest with the following code, which means: step 1: When user types in search box, the query string will be processed by a server php file and query suggestion string is ...
2
votes
2answers
420 views

geo name database (city, points of interest)

I am building a travel website with django. When a user is typing in the destination city name (or points of interest, like yellow stone), I want to do ajax auto suggestion. The question is how I ...
2
votes
1answer
293 views

Tag suggestion (not tag autocomplete)

AJAX autocomplete is fairly simple to implement. However, I wonder how to handle smart tag suggestion like this on SO. To clarify the difference between autocomplete and suggestion: autocomplete: ...
2
votes
2answers
177 views

How do I grab and use a variables coming back through ValueList from an AJAX call?

I'm trying the following code to execute a search and it's not working. On the search.cfm page, the only value coming back is the value I input into the search field (even if I click an autosuggest ...
2
votes
2answers
849 views

How-to build AutoComplete / Suggestions with Lucene.NET?

How-to build AutoComplete / Suggestions with Lucene.NET ?
2
votes
1answer
244 views

How can I apply a loading gif animation to my autosuggest?

I'm so lucky to have my solution on an US server, while my audience is located in Scandinavia (on the other side of the pond). This makes the respons time a bit slow, and not ideal when I'm using ...
2
votes
3answers
142 views

How could I get data for an intelligent suggestion list?

I want to build a suggestion list where that when I enter "PHP" it knows to suggest "Web Development," and if I enter "Data Recovery" "or "Software Installations," it suggests "Information ...
1
vote
1answer
41 views

Mahout : user that bought XX also bought XX

I found similar questions but the answer didn't satisfy me. Essentially I would like to implement in mahout an item suggester based on purchases (or even ratings). In mahout it seems that you have a ...
1
vote
2answers
23 views

Search suggestion box inputs space in front of search query

We have a problem with our search suggestions. Everytime we click on a suggestion at our website, it puts a space in front of the search query, which causes the query to fail. The code that we use ...
1
vote
2answers
39 views

Does a B Tree work well for auto suggest/auto complete web forms?

Auto suggest/complete fields are used all over the web. Google has appeared to master it given that as soon as one types in a search query, suggestions are returned almost instantaneously. I'm ...
1
vote
2answers
79 views

AFNetworking and auto-suggest

I'm using AFNetworking for my iOs app. I need to implement a search-suggest like in many other apps or search bars on websites. So basically launch GET requests but cancelling old ones as users tap ...

1 2 3 4 5