diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor
index 950f1be464b..253ad5be32a 100644
--- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor
+++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor
@@ -16,6 +16,10 @@
Name="SearchForm">
@((MarkupString)Localizer["SearchFormDesc"].Value)
+
+ - @((MarkupString)Localizer["SearchFormDescItem1"].Value)
+ - @((MarkupString)Localizer["SearchFormDescItem2"].Value)
+
@((MarkupString)Localizer["SearchFormTips"].Value)
+
+ @((MarkupString)Localizer["SearchFormWarningTips"].Value)
+
+
diff --git a/src/BootstrapBlazor.Server/Locales/en-US.json b/src/BootstrapBlazor.Server/Locales/en-US.json
index 27ca58ad6e4..d38ad564a4a 100644
--- a/src/BootstrapBlazor.Server/Locales/en-US.json
+++ b/src/BootstrapBlazor.Server/Locales/en-US.json
@@ -5065,9 +5065,12 @@
"EditModelTitle": "Edit Test Data Window",
"NamePlaceholder": "Please enter your name within 50 characters",
"SearchFormDesc": "When UseSearchForm is enabled and SearchItems is not provided, it will default to using TableColumn with Searchable=\"true\". You can customize the metadata through the SearchFormItemMetadata property in TableColumn",
+ "SearchFormDescItem1": "Customize metadata using the SearchFormItemMetadata property in TableColumn.",
+ "SearchFormDescItem2": "Customize the search item UI using the RenderContent method in the SearchFormItemMetadata parameter.",
"SearchFormIntro": "Enable the search form feature by setting UseSearchForm=\"true\", and configure the search items within the form using SearchItems, suitable for scenarios with custom complex search conditions",
"SearchFormTips": "Enabling UseSearchForm will prevent SearchModel SearchTemplate, CustomerSearchModel, and CustomerSearchTemplate from taking effect.",
"SearchFormTitle": "Search Form",
+ "SearchFormWarningTips": "BootstrapBlazor v10.4.2 introduced the UseSearchForm parameter, making the following examples obsolete. It is strongly recommended to use UseSearchForm.",
"SearchTableGroupBoxText": "Search Criteria",
"SearchTableIntro": "Set ShowSearch to display the query component, customize the search UI by setting the SearchTemplate template",
"SearchTableLi1": "Enable no data display function by setting ShowEmpty=\"true\"",
diff --git a/src/BootstrapBlazor.Server/Locales/zh-CN.json b/src/BootstrapBlazor.Server/Locales/zh-CN.json
index 18b18e3d58f..6c64be92c48 100644
--- a/src/BootstrapBlazor.Server/Locales/zh-CN.json
+++ b/src/BootstrapBlazor.Server/Locales/zh-CN.json
@@ -5064,10 +5064,13 @@
"DisplayText5": "搜索表单",
"EditModelTitle": "编辑测试数据窗口",
"NamePlaceholder": "请输入姓名,50字以内",
- "SearchFormDesc": "使用 UseSearchForm 开启搜索表单时未提供 SearchItems 默认尝试使用设置 Searchable=\"true\" 的 TableColumn 进行构建,可以通过 TableColumn 中的 SearchFormItemMetadata 属性定制化元数据",
+ "SearchFormDesc": "使用 UseSearchForm 开启搜索表单时未提供 SearchItems 默认尝试使用设置 Searchable=\"true\" 的 TableColumn 进行构建",
+ "SearchFormDescItem1": "通过 TableColumn 中的 SearchFormItemMetadata 属性定制化元数据",
+ "SearchFormDescItem2": "通过 SearchFormItemMetadata 参数中 RenderContent 方法自定义搜索项 UI",
"SearchFormIntro": "通过设置 UseSearchForm=\"true\" 开启搜索表单功能,通过 SearchItems 配置搜索表单内搜索项,适用于自定义复杂搜索条件的场景",
"SearchFormTips": "开启 UseSearchForm 后 SearchModel SearchTemplate CustomerSearchModel CustomerSearchTemplate 均不生效",
"SearchFormTitle": "搜索表单",
+ "SearchFormWarningTips": "BootstrapBlazor v10.4.2 版本后增加 UseSearchForm 参数后以下示例均可以不学习了,强烈推荐使用 UseSearchForm",
"SearchTableGroupBoxText": "搜索条件",
"SearchTableIntro": "设置 ShowSearch 显示查询组件,通过设置 SearchTemplate 模板自定义搜索 UI",
"SearchTableLi1": "通过设置 ShowEmpty=\"true\" 开启无数据显示功能",