startAffixTemplateFunction
Defines a custom template for the start affix area. The start affix is positioned before the input field.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
startAffixTemplate: () => '<span class="k-icon k-i-star"></span>',
placeholder: "With start affix..."
});
</script>