diff --git a/blazor/smart-rich-text-editor/appearance.md b/blazor/smart-rich-text-editor/appearance.md
index 09fa34cc86..7431ba17bf 100644
--- a/blazor/smart-rich-text-editor/appearance.md
+++ b/blazor/smart-rich-text-editor/appearance.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Customizing AI Assistant Popup | Syncfusion Blazor Smart Rich Text Editor
-description: Learn how to customize the AI Assistant popup styling with CSS animations and processing states.
+title: Customize AI Assistant Popup in Syncfusion Smart Rich Text Editor
+description: Step-by-step guidance for customizing the AI Assistant popup appearance, including CSS selectors, animation examples, responsive sizing, and processing state styles.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
@@ -55,7 +55,7 @@ In this example, we customize the AI Assistant popup appearance by targeting the
```
-
+
This shows how to customize the assistant by targeting the `.e-rte-aiquery-dialog.e-aiassistview` selector for fine-grained control over the popup's appearance.
diff --git a/blazor/smart-rich-text-editor/events.md b/blazor/smart-rich-text-editor/events.md
index 0ecb985cac..d740000904 100644
--- a/blazor/smart-rich-text-editor/events.md
+++ b/blazor/smart-rich-text-editor/events.md
@@ -1,7 +1,7 @@
---
layout: post
-title: AssistViewSettings Events & Callbacks | Syncfusion Blazor Smart Rich Text Editor
-description: Quick reference for AI Assistant events with simple definitions and code examples.
+title: AssistViewSettings Events in Syncfusion Smart Rich Text Editor
+description: Reference showing AssistViewSettings events, arguments, and usage examples. Learn how to handle prompt submissions, streaming responses, popup lifecycle events, and toolbar interactions programmatically.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
diff --git a/blazor/smart-rich-text-editor/method.md b/blazor/smart-rich-text-editor/method.md
index c5dde14ed9..979a804fa8 100644
--- a/blazor/smart-rich-text-editor/method.md
+++ b/blazor/smart-rich-text-editor/method.md
@@ -1,7 +1,7 @@
---
layout: post
-title: AssistViewSettings Methods | Syncfusion Blazor Smart Rich Text Editor
-description: Quick reference for AI Assistant methods with simple definitions and code examples.
+title: AssistViewSettings Methods in Syncfusion Smart Rich Text Editor
+description: Comprehensive reference for AssistViewSettings public methods with examples. Shows how to programmatically show or hide the AI popup, execute prompts, stream or update responses, and manage conversation history.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
diff --git a/blazor/smart-rich-text-editor/property.md b/blazor/smart-rich-text-editor/property.md
index 3444ee27db..c7fe1d9c14 100644
--- a/blazor/smart-rich-text-editor/property.md
+++ b/blazor/smart-rich-text-editor/property.md
@@ -1,7 +1,7 @@
---
layout: post
-title: AssistViewSettings Properties | Syncfusion Blazor Smart Rich Text Editor
-description: Quick reference for AI Assistant properties with simple definitions and code examples.
+title: AssistViewSettings Properties in Syncfusion Smart Rich Text Editor
+description: Reference of AssistViewSettings properties with concise definitions and examples. Covers configuring AI commands, popup sizing, placeholders, predefined prompts and suggestions, toolbar templates, banner templates, and history limits.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
@@ -44,8 +44,8 @@ Use the `Commands` property to configure each `AICommands` entry, including its
## PopupMaxHeight
**Type:** `string` | **Default:** `"400"`
-Maximum height for the AI Assistant popup. Accepts CSS units (e.g., `800px`, `80vh`, `100%`) or numeric values (treated as pixels).
-Sets the maximum height of the AI Assistant popup. Accepts CSS values like "800px", "80vh", "100%".
+
+Sets the maximum height of the AI Assistant popup. Accepts CSS height values or numbers (treated as pixels).
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -58,8 +58,8 @@ Sets the maximum height of the AI Assistant popup. Accepts CSS values like "800p
## PopupWidth
**Type:** `string` | **Default:** `"600"`
-Width of the AI Assistant popup. Accepts CSS units (px, %, vw) or numeric values (converted to pixels); use `auto` for responsive sizing.
-Sets the width of the AI Assistant popup. Accepts CSS values or numeric values.
+
+Sets the width of the AI Assistant popup. Accepts CSS width values or numbers (treated as pixels).
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -72,8 +72,8 @@ Sets the width of the AI Assistant popup. Accepts CSS values or numeric values.
## Placeholder
**Type:** `string` | **Default:** `"Ask AI to rewrite or generate content."`
-Hint text shown inside the AI prompt input to guide users on what they can ask the assistant.
-Sets the placeholder text in the AI prompt input field.
+
+Specifies the placeholder text shown in the AI Assistant prompt textarea.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -86,8 +86,8 @@ Sets the placeholder text in the AI prompt input field.
## Prompts
**Type:** `List`
-A collection of predefined prompt/response templates that can be loaded into the assistant to provide starters or canned workflows.
-Predefined prompt-response pairs to preload in the AI Assistant.
+
+Defines a collection of predefined prompts and their corresponding responses. These prompt/response templates can be loaded into the AI Assistant to provide starter prompts or predefined workflows.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -117,8 +117,8 @@ Predefined prompt-response pairs to preload in the AI Assistant.
## Suggestions
**Type:** `List`
-Short suggestion chips presented to users for one-tap prompts (e.g., "Fix grammar", "Make shorter").
-Quick-start suggestion chips shown in the AI Assistant.
+
+Defines suggestion prompts displayed in the AI Assistant popup.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -143,8 +143,8 @@ Quick-start suggestion chips shown in the AI Assistant.
## MaxPromptHistory
**Type:** `int` | **Default:** `20`
-Maximum number of conversation entries to retain; oldest entries are removed when the limit is exceeded.
-Maximum number of saved conversations. Oldest entries are removed when exceeded.
+
+Defines the maximum number of conversation entries retained in the editor's history. When this limit is exceeded, the oldest entries are automatically removed.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -157,9 +157,8 @@ Maximum number of saved conversations. Oldest entries are removed when exceeded.
---
## BannerTemplate
-**Type:** `RenderFragment?`
-RenderFragment used to render a custom banner at the top of the assistant, useful for branding, status, or short instructions.
-Custom template for the banner at the top of the AI Assistant sidebar.
+
+Specifies the template for the banner in the AI Assistant popup, useful for branding, status, or short instructions.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -179,8 +178,8 @@ Custom template for the banner at the top of the AI Assistant sidebar.
## HeaderToolbarSettings
**Type:** `RenderFragment?`
-RenderFragment that defines toolbar items in the assistant header (close, settings, etc.).
-Toolbar configuration for the header of the AI Assistant sidebar.
+
+Configures the toolbar in the header section of the AI Assistant interface.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@@ -201,9 +200,8 @@ Toolbar configuration for the header of the AI Assistant sidebar.
## PromptToolbarSettings
**Type:** `RenderFragment?`
-RenderFragment for toolbar items shown below the prompt input (edit, copy, save, etc.).
-Toolbar configuration below the prompt input area.
+Configures the toolbar below of the prompt input area section.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
@using Syncfusion.Blazor.InteractiveChat
@@ -224,8 +222,8 @@ Toolbar configuration below the prompt input area.
## ResponseToolbarSettings
**Type:** `RenderFragment?`
-RenderFragment for actions associated with AI responses (regenerate, copy, insert, feedback buttons).
-Toolbar configuration for AI response actions.
+
+Configures the toolbar in the AI response viewer section.
```razor
@using Syncfusion.Blazor.SmartRichTextEditor
From a4413a3a0fbe54197849a96e71bc99a9f1e1a660 Mon Sep 17 00:00:00 2001
From: keerthikarankv <100576900+keerthikarankv@users.noreply.github.com>
Date: Thu, 19 Mar 2026 11:27:18 +0530
Subject: [PATCH 3/6] UG(1015625): Customization UG page for Smart Rich Text
Editor component.
---
blazor/smart-rich-text-editor/appearance.md | 2 +-
blazor/smart-rich-text-editor/events.md | 2 +-
blazor/smart-rich-text-editor/method.md | 2 +-
blazor/smart-rich-text-editor/property.md | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/blazor/smart-rich-text-editor/appearance.md b/blazor/smart-rich-text-editor/appearance.md
index 7431ba17bf..5c374165fb 100644
--- a/blazor/smart-rich-text-editor/appearance.md
+++ b/blazor/smart-rich-text-editor/appearance.md
@@ -1,7 +1,7 @@
---
layout: post
title: Customize AI Assistant Popup in Syncfusion Smart Rich Text Editor
-description: Step-by-step guidance for customizing the AI Assistant popup appearance, including CSS selectors, animation examples, responsive sizing, and processing state styles.
+description: Customize the AI Assistant popup: CSS selectors, animation examples, responsive sizing, and processing-state styles for consistent theming.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
diff --git a/blazor/smart-rich-text-editor/events.md b/blazor/smart-rich-text-editor/events.md
index d740000904..83ca681ee4 100644
--- a/blazor/smart-rich-text-editor/events.md
+++ b/blazor/smart-rich-text-editor/events.md
@@ -1,7 +1,7 @@
---
layout: post
title: AssistViewSettings Events in Syncfusion Smart Rich Text Editor
-description: Reference showing AssistViewSettings events, arguments, and usage examples. Learn how to handle prompt submissions, streaming responses, popup lifecycle events, and toolbar interactions programmatically.
+description: Reference for AssistViewSettings events, arguments, and examples to handle prompt submissions, streaming responses, popup lifecycle, and toolbar actions.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
diff --git a/blazor/smart-rich-text-editor/method.md b/blazor/smart-rich-text-editor/method.md
index 979a804fa8..8a4cd99d9c 100644
--- a/blazor/smart-rich-text-editor/method.md
+++ b/blazor/smart-rich-text-editor/method.md
@@ -1,7 +1,7 @@
---
layout: post
title: AssistViewSettings Methods in Syncfusion Smart Rich Text Editor
-description: Comprehensive reference for AssistViewSettings public methods with examples. Shows how to programmatically show or hide the AI popup, execute prompts, stream or update responses, and manage conversation history.
+description: Comprehensive reference for AssistViewSettings methods with examples to show/hide the AI popup, execute prompts, stream/update responses, and manage history.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
diff --git a/blazor/smart-rich-text-editor/property.md b/blazor/smart-rich-text-editor/property.md
index c7fe1d9c14..dbc2b7ea4f 100644
--- a/blazor/smart-rich-text-editor/property.md
+++ b/blazor/smart-rich-text-editor/property.md
@@ -1,7 +1,7 @@
---
layout: post
title: AssistViewSettings Properties in Syncfusion Smart Rich Text Editor
-description: Reference of AssistViewSettings properties with concise definitions and examples. Covers configuring AI commands, popup sizing, placeholders, predefined prompts and suggestions, toolbar templates, banner templates, and history limits.
+description: Reference of AssistViewSettings properties with concise definitions and examples for configuring commands, popup sizing, placeholders, prompts, toolbars, banner templates, and history limits.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
From 6a61c2892d21ddb34a26ff7cb78ce48028518ff6 Mon Sep 17 00:00:00 2001
From: keerthikarankv <100576900+keerthikarankv@users.noreply.github.com>
Date: Thu, 19 Mar 2026 11:34:22 +0530
Subject: [PATCH 4/6] UG(1015625): Customization UG page for Smart Rich Text
Editor component.
---
blazor/smart-rich-text-editor/property.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blazor/smart-rich-text-editor/property.md b/blazor/smart-rich-text-editor/property.md
index dbc2b7ea4f..eaafd2ec49 100644
--- a/blazor/smart-rich-text-editor/property.md
+++ b/blazor/smart-rich-text-editor/property.md
@@ -1,7 +1,7 @@
---
layout: post
title: AssistViewSettings Properties in Syncfusion Smart Rich Text Editor
-description: Reference of AssistViewSettings properties with concise definitions and examples for configuring commands, popup sizing, placeholders, prompts, toolbars, banner templates, and history limits.
+description: Comprehensive reference of AssistViewSettings properties with concise definitions and code examples for configuring AI commands, popup sizing, placeholders, prompts, toolbars, banner templates, history, and usage patterns.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
From 9c4fd93184528001cf93bd55d1cc5d302f205c7a Mon Sep 17 00:00:00 2001
From: keerthikarankv <100576900+keerthikarankv@users.noreply.github.com>
Date: Thu, 19 Mar 2026 12:23:39 +0530
Subject: [PATCH 5/6] UG(1015625): Customization UG page for Smart Rich Text
Editor component.
---
blazor/smart-rich-text-editor/property.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blazor/smart-rich-text-editor/property.md b/blazor/smart-rich-text-editor/property.md
index eaafd2ec49..6152afc627 100644
--- a/blazor/smart-rich-text-editor/property.md
+++ b/blazor/smart-rich-text-editor/property.md
@@ -1,7 +1,7 @@
---
layout: post
title: AssistViewSettings Properties in Syncfusion Smart Rich Text Editor
-description: Comprehensive reference of AssistViewSettings properties with concise definitions and code examples for configuring AI commands, popup sizing, placeholders, prompts, toolbars, banner templates, history, and usage patterns.
+description: AssistViewSettings properties reference with concise definitions and examples for configuring commands, popup sizing, placeholders, prompts, toolbars, banners, and history.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug
From d84411a549ac366e9f86397f7f7d3fb9b00bf2e0 Mon Sep 17 00:00:00 2001
From: keerthikarankv <100576900+keerthikarankv@users.noreply.github.com>
Date: Thu, 19 Mar 2026 12:57:24 +0530
Subject: [PATCH 6/6] UG(1015625): Customization UG page for Smart Rich Text
Editor component.
---
blazor/smart-rich-text-editor/property.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blazor/smart-rich-text-editor/property.md b/blazor/smart-rich-text-editor/property.md
index 6152afc627..eb5994909b 100644
--- a/blazor/smart-rich-text-editor/property.md
+++ b/blazor/smart-rich-text-editor/property.md
@@ -1,7 +1,7 @@
---
layout: post
title: AssistViewSettings Properties in Syncfusion Smart Rich Text Editor
-description: AssistViewSettings properties reference with concise definitions and examples for configuring commands, popup sizing, placeholders, prompts, toolbars, banners, and history.
+description: AssistViewSettings reference with concise definitions and examples for configuring AI commands, popup sizing, placeholders, prompts, toolbars and history.
platform: Blazor
control: Smart Rich Text Editor
documentation: ug