@progress/kendo-dropdowns-react-wrapper
Version:
Kendo UI DropDowns wrapper for React
45 lines (38 loc) • 1.61 kB
Markdown
---
title: Templates
page_title: Templates - AutoComplete - Kendo UI Wrappers for React
description: "Customize the content of the suggested list items and the suggested list elements of a Kendo UI AutoComplete wrapper for React."
slug: templates_autocomplete
position: 3
---
# Templates
The AutoComplete provides full control over the way an item or a popup header is rendered by using the [Kendo UI templates](http://docs.telerik.com/kendo-ui/framework/templates/overview).
```jsx-preview
class AutoCompleteContainer extends React.Component {
constructor(props) {
super(props);
this.dataSource = new kendo.data.DataSource({
data: props.data
})
this.template = "<span>This is #:data# with template</span>"
}
render() {
return (
<div className="row">
<div className="col-xs-12 col-sm-6 example-col">
<AutoComplete dataSource={this.dataSource}
template={this.template}/>
</div>
</div>
);
}
}
ReactDOM.render(
<AutoCompleteContainer data={["Baseball", "Basketball", "Cricket", "Field Hockey", "Football", "Table Tennis", "Tennis", "Volleyball"]}/>,
document.querySelector('my-app')
);
```
## Suggested Links
* [Kendo UI Templates](http://docs.telerik.com/kendo-ui/framework/templates/overview)
* [Kendo UI AutoComplete for jQuery](https://docs.telerik.com/kendo-ui/controls/editors/autocomplete/overview)
* [API Reference of the AutoComplete Widget](https://docs.telerik.com/kendo-ui/api/javascript/ui/autocomplete)