prefixOptions Object
The configuration for the prefix adornment of the component.
Example - specify prefix adornment template
<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox({
prefixOptions: {
template: () => `${kendo.ui.icon("search")}`
}
});
</script>