suffixOptions.template String|Function

The template for the suffix adornment of the component.

Example - specify suffix adornment template

Open In Dojo
<input id="textbox" />
<script>
    $("#textbox").kendoTextBox({
        suffixOptions: {
            template: () => `${kendo.ui.icon("search")}`
        }
    })
</script>
In this article