0
votes
2answers
53 views

Does JSF provide input component where suggestion for textbox reappears after space?

I am looking for JSF component similar to auto suggestion or combo-box but with extended functionality that options in drop down suggestions reappears after user has clicked space. In other words, ...
-1
votes
1answer
91 views

Provide suggestions in combobox [closed]

I want my combo box to drop down and provide suggestions when the user types in the combo box. For example, if the user types "R", then all items starting with "R" (say Roshan, Rohan, Rishan, etc.) ...
2
votes
1answer
269 views

Ajax combo box in gridview appends the value I searched with the data that is bound from the database

Ajax combo box in gridview appends the value I searched with the data that is bound from the database I dont want it to, append or bind the value that are typed in searched, this is happening when ...
0
votes
1answer
144 views

AutoSuggestion in Combobox

I created a Combobox with CreateWindowEx. Everything goes well. But I would like to make a final feature: AutoSuggestion. The Combobox is used to do search text in a document, hence at some point, it ...
1
vote
2answers
469 views

Need Suggestions For AutoSuggest For VB.NET ComboBox

To provide some context, I have a combobox that the user interacts with to select an insurance company. Unfortunately they don't require just the name; sometimes insurance companies have the same ...
0
votes
0answers
473 views

custom combobox win32

I am trying to implement an auto-suggest feature in an win32 combobox (C++). I want to achieve a behaviour that is similar to the google auto suggest function. When the user types something into the ...
0
votes
1answer
172 views

How to use Autosuggestion for two concatinated string seperated by '-' in combobox?

I am using combobox containing string like "01322-Abcdefg". Assigning datatable as datasource to it. I want to use autosuggestion in combobox. I am using below code : combobox.DataSource = ...
0
votes
1answer
770 views

gwt suggestionBox how to get text,value pairs in it

i need a autosuggest combobox for an ambiguous list of strings. but everey string has an unique id. this id is needed to know what the user has selected (send id back to server and do something with ...
0
votes
1answer
924 views

Why does the width of the auto-suggest dropdown box not match the width of the combobox?

In VB.NET for the combo box, I have set the autocomplete mode to "SuggestAppend" and autocomplete source to "ListItems". Its working as expected. But the width of the autosuggest dropdown box is not ...
0
votes
1answer
928 views

AJAX auto-suggest combo box

I’m looking for an AJAX-enabled combo box with the following features: The combo box accepts entries selected from a drop-down as well as free-form text entered by the user (kind of like the text ...
5
votes
1answer
983 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 ...
0
votes
2answers
1k views

Is this the best way to build AutoSuggest into a WPF ComboBox?

I have a Nationality ComboBox like the one below and want to make it so that the user can type letters to narrow in on the choices. I could solve this the way I started below by adding logic in the ...