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:
parent
1b84e83061
commit
7cf4f8fdaa
@ -8,7 +8,7 @@
|
|||||||
@if (AllowSearch == "True")
|
@if (AllowSearch == "True")
|
||||||
{
|
{
|
||||||
<div class="input-group my-3">
|
<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-primary" @onclick="Search">@Localizer["Search"]</button>
|
||||||
<button type="button" class="btn btn-secondary" @onclick="Reset">@Localizer["Reset"]</button>
|
<button type="button" class="btn btn-secondary" @onclick="Reset">@Localizer["Reset"]</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -120,4 +120,13 @@
|
|||||||
<data name="PageOfPages" xml:space="preserve">
|
<data name="PageOfPages" xml:space="preserve">
|
||||||
<value>Page {0} of {1}</value>
|
<value>Page {0} of {1}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Reset" xml:space="preserve">
|
||||||
|
<value>Reset</value>
|
||||||
|
</data>
|
||||||
|
<data name="Search" xml:space="preserve">
|
||||||
|
<value>Search</value>
|
||||||
|
</data>
|
||||||
|
<data name="SearchColumns" xml:space="preserve">
|
||||||
|
<value>Search Columns; {0}</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
Loading…
x
Reference in New Issue
Block a user