Pager Search Localization

Localized the new Search Buttons
Added a Localized Placeholder that will display what columns are being searched.
This commit is contained in:
Leigh Pointer
2023-10-10 11:28:57 +02:00
parent 1b84e83061
commit 7cf4f8fdaa
2 changed files with 10 additions and 1 deletions

View File

@ -8,7 +8,7 @@
@if (AllowSearch == "True")
{
<div class="input-group my-3">
<input id="search" class="form-control" @bind="@_search" />
<input id="search" class="form-control" placeholder=@string.Format(Localizer["SearchColumns"], SearchProperties) @bind="@_search" />
<button type="button" class="btn btn-primary" @onclick="Search">@Localizer["Search"]</button>
<button type="button" class="btn btn-secondary" @onclick="Reset">@Localizer["Reset"]</button>
</div>