Data Binding
For all cases where the business items are not simple strings data-binding is necessary in order to correctly visualize information. The RadAutoCompleteView component supports data binding in the form of path properties.
- TextSearchPath (string): Defines the name of the property the search function will be executed against.
- ImagePath (string): Defines the name of the property holding a path to an image. This property is optional.
The TextSearchPath property is required in data-binding scenarios.
The RadAutoCompleteView component provides a default template for suggestion items that cannot be modified. You can use a custom template if you need to customize the suggestion items.
Example
Here is an example how the RadAutoCompleteView Data Binding 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:
Finally, use the following snippet to declare a RadAutoCompleteView in XAML:
Where the telerikInput namespace is the following:
A sample Data Binding example can be found in the AutoCompleteView/Features folder of the SDK Samples Browser application.