Skip to content

Commit a0fea3f

Browse files
committed
refactor: 更新 OnFilterAsync 回调方法文档
1 parent 077da42 commit a0fea3f

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/BootstrapBlazor.Server/Components/Samples/Table/TablesFilter.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
<ul class="ul-demo mb-3">
107107
<li>@((MarkupString)Localizer["DefaultSortLi1"].Value)</li>
108108
<li>@((MarkupString)Localizer["DefaultSortLi2"].Value)</li>
109+
<li>@((MarkupString)Localizer["DefaultSortLi3"].Value)</li>
109110
</ul>
110111
<p>@Localizer["DefaultSortP"]</p>
111112
</section>

src/BootstrapBlazor.Server/Locales/en-US.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5702,6 +5702,7 @@
57025702
"DefaultSortIntro": "Default sorts as default when setting the <code>DefaultSort</code> property value to <code>true</code>",
57035703
"DefaultSortLi1": "Set <code>DefaultSort=true</code> to enable the default sort function, when multiple columns set this property, the first column works",
57045704
"DefaultSortLi2": "Set <code>DefaultSortOrder</code> value, set default collation",
5705+
"DefaultSortLi3": "Before <code>v9.6.2</code>, use <code>OnFilterValueChanged</code> to trigger the filter callback. After refactoring, use <code>OnFilterAsync</code> to trigger the filter callback method.",
57055706
"DefaultSortP": "In this case the default sort is the last column in reverse order",
57065707
"SortListTitle": "Multi-column sort",
57075708
"SortListIntro": "Set <code>the SortList</code> property, use this parameter for multi-column sorting when the table loads",

src/BootstrapBlazor.Server/Locales/zh-CN.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5703,6 +5703,7 @@
57035703
"DefaultSortIntro": "设置 <code>DefaultSort</code> 属性值为 <code>true</code> 时作为默认排序列",
57045704
"DefaultSortLi1": "设置 <code>DefaultSort=true</code> 开启默认排序功能,当多列设置此属性时,第一列起作用",
57055705
"DefaultSortLi2": "设置 <code>DefaultSortOrder</code> 值,设置默认排序规则",
5706+
"DefaultSortLi3": "<code>v9.6.2</code> 版本前,使用 <code>OnFilterValueChanged</code> 触发过滤回调,重构后使用 <code>OnFilterAsync</code> 触发过滤回调方法",
57065707
"DefaultSortP": "本例中默认排序为最后一列倒序排序",
57075708
"SortListTitle": "多列排序",
57085709
"SortListIntro": "设置 <code>SortList</code> 属性,表格加载时使用此参数进行多列排序",

0 commit comments

Comments
 (0)