Remote Search
The Remote Search functionality of the RadAutoCompleteView control allows you to easily take the user input, trigger custom searching algorithm and assign the results to the ItemSource of the control.
- LoadingTemplate (DataTemplate): Defines the loading message.
Implement your custom searching algorithm inside the body of the TextChanged event handler.
Example
Here is an example how the RadAutoCompleteView Remote Search 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:
Use the following snippet to declare a RadAutoCompleteView in XAML:
Where you will need to add the following namespaces:
Create a custom searching algorithm and assign the result to the control's ItemsSource inside the TextChanged event handler:
This is the result when LoadingTemplate is searching for results:
This is the search complete results:
A sample Remote Search example can be found in the AutoCompleteView/Features folder of the SDK Samples Browser application.