Questions tagged [autocomplete]

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.

Autocomplete is a user interface 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.

It is provided by many web browsers, email programs, search engine interfaces, source code editors, database query tools, word processors, and command line interpreters.

16719 questions
5
votes
1 answer

What software supports variable-like code completion in XML documents?

So, I work with an in-house XML solution we use for defining content, with it's own XSD file that goes with it. I want to be able to do Context Tagging and reference auto-complete like I do with C# and other languages for certain cases, while still…
Dreadicon
  • 243
  • 2
  • 7
5
votes
2 answers

jQuery UI autocomplete caching using $.map function

I am trying to implement caching using jQuery UI autocomplete. I am using jQuery 1.4.4 and UI 1.8.6 Here is the basic code that I got working: $('#searchbox').autocomplete({ source: function(request, response) { if (xhr === lastXhr)…
nolabel
  • 1,147
  • 3
  • 18
  • 26
5
votes
3 answers

Autocomplete case issue

When writing C# in Visual Studio (Community 2017), it's always really bugged me that when I have two similarly-named identifiers, one beginning with upper-case and one beginning with lower-case, that sometimes when I start typing in lower-case it'll…
Jeff
  • 7,504
  • 3
  • 25
  • 34
5
votes
3 answers

Autocomplete and camelcase

If I use Meta-/ to autocomplete words like ThisClass, emacs gets confused and gives me either THISCLASS or thisclass. Worse yet, if I have typed ThisC and then autocomplete it gives Thisclass which is very frustrating. Is there a way to modify this…
Rohan Monga
  • 1,759
  • 1
  • 19
  • 31
5
votes
2 answers

Redgate SQL Prompt equivalent for PostgreSQL database

I'm starting at a new company after coming from a previous role where I could rely on Redgate's SQL Prompt with a MySQL environment. I'm now working with a Postgresql environment (SQL Workbench/J) and was wondering if anyone had come across any…
Ben Saunders
  • 929
  • 10
  • 20
5
votes
3 answers

React Unknown Prop 'onSearch'

I'm trying to use onSearch event on a search input like this: render(){ return( console.warn('search') } /> ); } But I get the unknown prop error, any ideas of how to fix it? I want to create a…
IagoLast
  • 119
  • 1
  • 6
5
votes
6 answers

How to create an Auto-complete combo-box or text box to filter text containing a string

How do I create an Auto-complete ComboBox or TextBox that filters text based on a string? For example: if I type an "a" in a TextBox, I only get to see all strings containing an "a".
jozi
  • 2,833
  • 6
  • 28
  • 41
5
votes
1 answer

Autocomplete suggestions from article content

Our goal We would like to give our users the ability get search suggestions as they start typing, but the ElasticSearch suggesters don't offer anything that seems to fit our usecase of getting suggestions for snippets of text from articles.…
Silas Hansen
  • 1,669
  • 2
  • 17
  • 23
5
votes
3 answers

Google Suggestish text box (autocomplete)

What would be the best way to develop a text box that remembers the last x number of entries that were put into it. This is a standalone app written with C#.
Ethan Gunderson
  • 10,959
  • 8
  • 30
  • 29
5
votes
1 answer

Visual Studio 2017 enable completion after character is typed in F#

I'm developing a F# project using Visual Studio 2017. Before, I've used C# and I'm used to great autocompletion in VS that automatically pops-out and shows me a list of local variables, methods and so on when I press any character. Unfortunately,…
5
votes
2 answers

how can I add bootstrap auto code completion feature in IntelliJ IDE?

I added Bootstrap3 plugin in my IntelliJ IDEA and also added the css and js links in the html page. But I couldnt get the autocompletion for bootstrap class names etc. How can I achieve that?
Online
  • 53
  • 1
  • 5
5
votes
3 answers

Set Current Place in Place Autocomplete Fragment

I want to set the current place into the place autocomplete fragment when the activity is created. I am able to Load Google Maps API and I have successfully implemented Place Autocomplete Fragment in my application. But, I want place autocomplete…
user6760444
  • 81
  • 1
  • 5
5
votes
1 answer

vscode chooses unusual option for autocomplete

While using the latest version of Visual Studio Code I am editing a JavaScript file and often want to log output to the console. I created a user snippet to make this easier to autocomplete but I've found that the default option I get in my…
ken
  • 8,763
  • 11
  • 72
  • 133
5
votes
2 answers

How can I populate materialize.css chips autocomplete data?

There is an example with pre-written values: $('.chips-autocomplete').material_chip({ autocompleteData: { 'Apple': null, 'Microsoft': null, 'Google': null } }); But I need to populate values dynamically from array which…
5
votes
1 answer

Excel VBA UDF autocomplete parameters

I realize there are thousands of comments and hundreds of questions related to UDF tooltips on this website, external forums and miscellaneous discuss groups. I am new to VBA and Excel really, but have learned a lot recently. With that time I've put…
soulshined
  • 9,612
  • 5
  • 44
  • 79
1 2 3
99
100