Disable autocomplete (history) on forms

I am using Blazor EditForm and set the autocomplete="off"
This should disable history on all input fields. But it don't.

Do I need to set it on all RadzenTextBox's ?

<RadzenTextBox MaxLength="200" id="Name" class="form-control-sm col-8" @bind-Value="Report.Name" placeholder="Enter Name" AutoComplete="false"/>

You must turn off autocomplete within the browser. :innocent:

From the documentation you can do it on a input field

@Martin-Andersen the autocomplete attribute is a browser provided feature ...

Okay so not all browsers support it. I am using firefox on windows 10 and have set ```
autocomplete="off" on the input fields.