suffixOptionsObject
The configuration for the suffix adornment of the component.
Example - specify suffix adornment template
<input id="maskedtextbox" />
<script>
    $("#maskedtextbox").kendoMaskedTextBox({
        mask: "000000",
        suffixOptions: {
            template: () => `${kendo.ui.icon("search")}`
        }
    });
</script>In this article