RadzenTextBox Autocomplete -- ✔ resolved

Is it necessary to do anything more on RadzenTextBox than to set Autocomplete="true" for browsers to offer previously typed values? I'm on latest Edge and autocomplete menu is not appearing...

This is a browser feature and depends on your browser current settings. We just set autocomplete attribute for the HTML input:

1 Like

So turns out that for autocomplete to work, input needs to be placed in a form and in this case to have a name, because id is generated by Radzen.Blazor and is different every time. So to make it work i needed to:

<form>
    <RadzenTextBox Name="someName" AutoComplete />
</form>
1 Like