suffixOptions.separator Boolean (default: true)

If set to false, the suffix adornment will not have a separator.

Example - specify suffix adornment separator

<input id="suffix" />
<script>
    $("#suffix").kendoMultiSelect({
        label: "MultiSelect",
        dataTextField: "text",
        dataValueField: "value",
        dataSource: {
                data:  [
                        { text: "Apples", value: "1" },
                        { text: "Oranges", value: "2" }
                ]
        },
        suffixOptions: {
            template: () => `${kendo.ui.icon("search")}`,
            separator: false
        }
    })
</script>
In this article