Suggest Mode
RadAutoCompleteView exposes three different modes for providing suggestions:
- Suggest: Provides a drop-down list of options for you to pick from;
- Append: Provides an inline display of the first suggestion;
- SuggestAppend: Combines the functionality of the two options above, shows a drop-down with suggestions and at the same time selects the first one from the list.
In order to choose any of those modes you should set the SuggestMode property of the control. The default SuggestMode is "Suggest".
Example
Here is an example how the RadAutoCompleteView Suggest Mode functionality works:
First, create the needed business objects, for example type Client with the following properties:
Then create a ViewModel with a collection of Client objects:
For example SuggestMode="Suggest" property can be declared through XAML using the following snippet:
Here is the result when SuggestMOde is set to Suggest:
For SuggestMode="Append":
And the final result:
And finaly SuggestMode="SuggestAppend" is declared as follow:
Here is the result:
A sample Suggest Mode example can be found in the AutoCompleteView/Features folder of the SDK Samples Browser application.