Hi Salvatore,
Greetings from Syncfusion support.
We checked your query. We can disable the browser suggestions by setting AutoComplete = “off” in a SfTextBox component using AutoComplete property. Refer to the code below,
|
@using Syncfusion.Blazor.Inputs
<SfTextBox Autocomplete="AutoComplete.Off"></SfTextBox> |
Screenshot:
You can also set the AutoComplete = “off” in a SfTextBox component using the HtmlAttributes property. Refer to the code below,
|
<SfTextBox HtmlAttributes="@htmlAttributes"></SfTextBox>
@code{
public Dictionary<string, object> htmlAttributes { get; set; } = new Dictionary<string, object>() { { "autocomplete", "off" } };
} |
If we misunderstood your query, please provide the more details about requirement to validate further.
Kindly get back to us for further assistance.
Regards,
Sevvandhi N