<input type="search" list="txtSearch" @bind-value="@searchTerm" @onkeydown="@Enter">
<datalist id="txtSearch">
@foreach (var item in objText)
{
<option>@item.A</option>
<option>@item.B</option>
<option>@item.C</option>
<option>@item.D</option>
}
</datalist>
The default result is all items from SQL Server.
I want to introduce the first 50
And that the normal behavior (only) when typing shows everything blazor of course
Datalist isn't ideal element for this because if someone start to browse available options from list there will be only 50 of them, not containing every option. Also typing would require constant rerefeshing of available options.
If you still want to use it that way, though, you should filter your data from SQL Server by using
Then use
filteredObjText
in@foreach
. InEnter
method there should be filtering data by using something likeResulting code would also be different if you want to list only 50 properties or only properties matching typed filter.
Here is full working code for this (with some fixes of problems overlooked in my original answer).
It's worth noting that browsers capture alphanumeric input so to really fire Enter() there is need to press some combination of tab, shift, enter or one of arrow keys.