suffixOptions.icon String
Defines the name for an existing icon in a Kendo UI theme or SVG content.
Example - specify suffix adornment icon
<input id="autocomplete" />
<script>
$("#suffix").kendoComboBox({
label: "Combobox",
dataSource: [1, 2],
suffixOptions: {
icon: "search"
}
})
</script>