Hi!
Is there a way to format just a single character in the RadzenFormField text property? For example - we need to be able to show "Name*" where the asterisk is a different color. It cannot be put into the helper section below the control - it needs to be integrated with the FormField label.
It looks like just using html in the Text property does not work as it prints "Name *". I've also tried using (MarkupString) in the Text property (see below) but it throws an error that the text property expects a string and not MarkupString.
<RadzenFormField Text="@((MarkupString)"<b>Login</b><font color: red>*</font>")" Style="width:100%" AllowFloatingLabel=false>
Is there a way to achieve this? Thanks!