mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-04 21:20:16 +08:00
!1621 feat(#I41UHU): toolbar on table compatible bs5
* chore: bump version to 5.2.5 * fix: 修复 Table 组件搜索按钮工具栏未适配 bs5 问题
This commit is contained in:
parent
accafea5a7
commit
139b9e0327
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<Version>5.2.4</Version>
|
||||
<Version>5.2.5</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
|
||||
|
@ -107,21 +107,19 @@
|
||||
<BootstrapInput class="table-toolbar-search" placeholder="@SearchPlaceholderText" @bind-Value="@SearchText">
|
||||
<Tooltip Placement="Placement.Top" Title="@SearchTooltip" IsHtml="true" />
|
||||
</BootstrapInput>
|
||||
<div class="input-group-append">
|
||||
<Button Color="@Color.Secondary" Icon="fa fa-search" OnClickWithoutRender="@SearchClick">
|
||||
<span class="d-none d-sm-inline-block">@SearchButtonText</span>
|
||||
<Button Color="@Color.Secondary" Icon="fa fa-search" OnClickWithoutRender="@SearchClick">
|
||||
<span class="d-none d-sm-inline-block">@SearchButtonText</span>
|
||||
</Button>
|
||||
@if (ShowResetSearch)
|
||||
{
|
||||
<Button Color="@Color.Secondary" Icon="fa fa-trash" OnClickWithoutRender="@ClearSearchClick">
|
||||
<span class="d-none d-sm-inline-block">@ResetSearchButtonText</span>
|
||||
</Button>
|
||||
@if (ShowResetSearch)
|
||||
{
|
||||
<Button Color="@Color.Secondary" Icon="fa fa-trash" OnClickWithoutRender="@ClearSearchClick">
|
||||
<span class="d-none d-sm-inline-block">@ResetSearchButtonText</span>
|
||||
</Button>
|
||||
}
|
||||
@if (ShowAdvancedSearch)
|
||||
{
|
||||
@RenderAdvanceSearchButton
|
||||
}
|
||||
</div>
|
||||
}
|
||||
@if (ShowAdvancedSearch)
|
||||
{
|
||||
@RenderAdvanceSearchButton
|
||||
}
|
||||
</div>
|
||||
}
|
||||
else if (ShowAdvancedSearch)
|
||||
|
Loading…
Reference in New Issue
Block a user