Suggestion Display Mode
4 Aug 2016 / 1 minute to read
The AutocompleteMode
property is used to decide the suggestion pattern for displaying the filtered data according to the text entered. The different types of pattern are described below
-
Suggest
-
Append
-
Suggest and Append
NOTE
The default option is suggest mode.
Append
- Append - It appends the first matching string with the entered character.
countryAutoComplete.AutoCompleteMode = AutoCompleteMode.Append;
Suggest in Dropdown
- Suggest - It displays the suggestion in the dropdown.
countryAutoComplete.AutoCompleteMode = AutoCompleteMode.Suggest;
Both Append and Suggest in DropDown
- SuggestAppend - It displays the suggestion in the dropdown along with appending the first matching string.
countryAutoComplete.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page