diff --git a/src/BootstrapBlazor.Server/Locales/en-US.json b/src/BootstrapBlazor.Server/Locales/en-US.json
index 0485439f31a..df15c2cfa73 100644
--- a/src/BootstrapBlazor.Server/Locales/en-US.json
+++ b/src/BootstrapBlazor.Server/Locales/en-US.json
@@ -4885,7 +4885,12 @@
"SortListTitle": "Multi-column sort",
"TablesFilterDesc": "Filter to quickly find the data you want to see; sort to quickly find or compare data.",
"TablesFilterDescLi1": "Filters a column of data to specify the column to be filtered by specifying the filterable property of the column",
- "TablesFilterDescLi2": "Sort a column of data, specify the column to be sorted by specifying the Sortable property of the column, change the collation by multiple clicks"
+ "TablesFilterDescLi2": "Sort a column of data, specify the column to be sorted by specifying the Sortable property of the column, change the collation by multiple clicks",
+ "TablesFilterTemplateDescription": "
The FilterTemplate type is RenderFragment its value is a custom component, and the component must inherit the filterBase In this case, the last column in this case, the Quantity column, uses the custom component by filtering the template CustomerFilter [portal] CustomerFilter component source code
Notes:
FilterProvider, and FilterProvider must be under the FilterTemplate nodeFilterProvider component; for example, by setting ShowMoreButton to control whether the + - symbol is displayedv9.6.2, use OnFilterValueChanged to trigger the filter callback. After refactoring, use OnFilterAsync to trigger the filter callback method.Name Education Count Complete The first two columns and the last column are fixed columns, and the middle columns are scrolled horizontally",
diff --git a/src/BootstrapBlazor.Server/Locales/zh-CN.json b/src/BootstrapBlazor.Server/Locales/zh-CN.json
index 6e4efa45f0c..6e1aa6a35a3 100644
--- a/src/BootstrapBlazor.Server/Locales/zh-CN.json
+++ b/src/BootstrapBlazor.Server/Locales/zh-CN.json
@@ -4885,7 +4885,12 @@
"SortListTitle": "多列排序",
"TablesFilterDesc": "筛选可快速查找到自己想看的数据;排序可快速查找或对比数据。",
"TablesFilterDescLi1": "对某一列数据进行筛选,通过指定列的 Filterable 属性来指定需要筛选的列",
- "TablesFilterDescLi2": "对某一列数据进行排序,通过指定列的 Sortable 属性来指定需要排序的列,通过多次点击更改排序规则"
+ "TablesFilterDescLi2": "对某一列数据进行排序,通过指定列的 Sortable 属性来指定需要排序的列,通过多次点击更改排序规则",
+ "TablesFilterTemplateDescription": "FilterTemplate 类型为 RenderFragment 其值为自定义组件,组件必须继承 FilterBase 本例中最后一列 数量列 通过筛选模板使用自定义组件 CustomerFilter [传送门] CustomerFilter 组件源码
注意事项:
FilterProvider 包裹,FilterProvider必须在 FilterTemplate 节点下FilterProvider 组件的参数可微调过滤器;例如通过设置 ShowMoreButton 控制是否显示 + - 符号v9.6.2 版本前,使用 OnFilterValueChanged 触发过滤回调,重构后使用 OnFilterAsync 触发过滤回调方法Name Education Count Complete 前两列和最后一列为固定列,中间各列进行水平滚动,本例中设置 AllowResize=\"true\" 固定列也可以调整宽度",