You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: