I tried this on my Blazor Server project:
<BootstrapInput class="virtualkeyboard" placeholder="BootstrapInput" @bind-Value="@valorTest1" />
<input class ="virtualkeyboard" @bind-value="@valorTest2" />
<AutoComplete class="virtualkeyboard" Items="@StaticItems" IsSelectAllTextOnFocus="true" @bind-Value="@valorTest3" />
I can obtain the correct input value on @valorTest1 and @valorTest3 but @valorTest3 is null. The Autocomplete can not even filter the dropdownlist options, always show all of them.