suffixOptions.templateString|Function
The template for the suffix adornment of the component.
Example - specify suffix adornment template
<input id="textbox" />
<script>
    $("#textbox").kendoTextBox({
        suffixOptions: {
            template: () => `${kendo.ui.icon("search")}`
        }
    })
</script>In this article