<kendo:autoComplete-suffixOptions>
The configuration for the suffix adornment of the component.
Example
<kendo:autoComplete>
<kendo:autoComplete-suffixOptions></kendo:autoComplete-suffixOptions>
</kendo:autoComplete>
Configuration Attributes
icon java.lang.String
Defines the name for an existing icon in a Kendo UI theme or SVG content.
Example
<kendo:autoComplete-suffixOptions icon="icon">
</kendo:autoComplete-suffixOptions>
separator boolean
If set to false, the suffix adornment will not have a separator.
Example
<kendo:autoComplete-suffixOptions separator="separator">
</kendo:autoComplete-suffixOptions>
template java.lang.String
The template for the suffix adornment of the component.
Example
<kendo:autoComplete-suffixOptions template="template">
</kendo:autoComplete-suffixOptions>
Event Attributes
template String
The template for the suffix adornment of the component.
Example
<kendo:autoComplete-suffixOptions template="handle_template">
</kendo:autoComplete-suffixOptions>
<script>
function handle_template(e) {
// Code to handle the template event.
}
</script>
Event Tags
kendo:autoComplete-suffixOptions-template
The template for the suffix adornment of the component.
Example
<kendo:autoComplete-suffixOptions>
<kendo:autoComplete-suffixOptions-template>
<script>
function(e) {
// Code to handle the template event.
}
</script>
</kendo:autoComplete-suffixOptions-template>
</kendo:autoComplete-suffixOptions>