title | page_title | description | slug | canonicalLink | position |
---|---|---|---|---|---|
Overview |
AutoComplete Overview - Components - Kendo UI for Vue |
Get an overview of the features the Kendo UI AutoComplete wrapper for Vue delivers and use the component in Vue projects. |
overview_autocomplete_wrapper |
1 |
The AutoComplete provides suggestions depending on the typed text.
It is a richer version of the <input>
element and provides suggestions depending on the typed text.
The AutoComplete wrapper for Vue is a client-side wrapper for the Kendo UI AutoComplete widget.
The following example demonstrates the AutoComplete in action.
{% meta height:350 %} {% embed_file autocomplete/basic/main.vue preview %} {% embed_file autocomplete/basic/main.js %} {% endmeta %}
- [Data binding]({% slug databinding_autocomplete_wrapper %})
- [Filtering]({% slug filtering_autocomplete_wrapper %})
- [Virtualization]({% slug virtualization_autocomplete_wrapper %})
- [Grouping]({% slug grouping_autocomplete_wrapper %})
- [Templates]({% slug templates_autocomplete_wrapper %})
- [Keyboard navigation]({% slug keyboard_navigation_autocomplete_wrapper %})
- [RTL support]({% slug rtl_support_autocomplete_wrapper %})
The following example demonstrates basic AutoComplete events. You can subscribe to all AutoComplete events by the handler name.
{% meta height:350 %} {% embed_file autocomplete/events/main.vue preview %} {% embed_file autocomplete/events/main.js %} {% endmeta %}