suffixOptions.template String|Function

The template for the suffix adornment of the component.

Example - specify suffix adornment template

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