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