RadInlineAIAssistant: Add documentation. - #3188
Merged
martinivanoff merged 2 commits intoAug 7, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds first-party documentation content for the new RadInlineAIAssistant control and wires it into the docs navigation so it appears in the Controls list and site structure.
Changes:
- Adds a new
controls/radinlineaiassistant/documentation section (overview, getting started, commands, interaction providers, responses, events, visual structure). - Registers the new control in
docs-builder.ymland adds it to the main controls index (introduction.md). - Updates the RadPivotGrid “Export to Excel” article wording for
XlsxFormatProvider.
Reviewed changes
Copilot reviewed 12 out of 21 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| introduction.md | Adds InlineAIAssistant to the controls landing-page list. |
| docs-builder.yml | Adds navigation metadata entry for controls/radinlineaiassistant. |
| controls/radpivotgrid/features/export.md | Updates the Excel-export narrative (namespace/type wording). |
| controls/radinlineaiassistant/overview.md | New overview page for RadInlineAIAssistant. |
| controls/radinlineaiassistant/visual-structure.md | New visual structure/terminology page. |
| controls/radinlineaiassistant/getting-started.md | New getting started tutorial for attaching/using the assistant. |
| controls/radinlineaiassistant/configuring-interaction-providers.md | New guidance on built-in/custom interaction providers. |
| controls/radinlineaiassistant/commands.md | New commands configuration article. |
| controls/radinlineaiassistant/handling-responses.md | New guidance on immediate/streamed responses and templating. |
| controls/radinlineaiassistant/events.md | New events reference page. |
| controls/radinlineaiassistant/customizing-appearance.md | New appearance customization article. |
| controls/radinlineaiassistant/_meta.yml | Marks the section as new via metadata. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| * __Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml__ | ||
|
|
||
| In order to export RadPivotGrid to xlsx format (Excel file), you have to use `XlsxFormatProvider` from *Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx* namespace. The XlsxFormatProvider has `Export` method, which has two arguments - first one is a `Workbook` that has to be exported and the second one is the output stream. In our case we'll create a simple Workbook (instance of *Telerik.Windows.Documents.Spreadsheet.Model.Workbook*) with a single Worksheet (instance of *Telerik.Windows.Documents.Spreadsheet.Model.Workbook*) in it. | ||
| In order to export RadPivotGrid to xlsx format (Excel file), you have to use `XlsxFormatProvider` from *Telerik.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx* namespace. The XlsxFormatProvider has `Export` method, which has two arguments - first one is a `Workbook` that has to be exported and the second one is the output stream. In our case we'll create a simple Workbook (instance of *Telerik.Documents.Spreadsheet.Model.Workbook*) with a single Worksheet (instance of *Telerik.Documents.Spreadsheet.Model.Workbook*) in it. |
Comment on lines
+29
to
+31
| * __Send prompt button__—Pressing the button sends action that raises the `PromptRequest` event. | ||
|
|
||
| * __Prompt suggestions commands__—User defined commands that allows you to setup a predefined prompt suggestions. |
|
|
||
|  | ||
|
|
||
| <!-- TODO: attach screenshot showing the customized watermark content --> |
| ```XAML | ||
| <Window.Resources> | ||
| <DataTemplate x:Key="CustomResponseTemplate"> | ||
| <telerikChat:InlineAIAssistantResponse ResponseText="{Binding ResponseText}" Background="Bisque"/> |
DinkoK
approved these changes
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.