Skip to content

Commit 75495d6

Browse files
Copilotxristianstefanovyordan-mitevdimodi
authored
Add documentation for Prompt-Controlled DataGrid feature (#3297)
* Initial plan * Add Prompt-Controlled DataGrid documentation Co-authored-by: xristianstefanov <[email protected]> * Remove unnecessary package-lock.json file Co-authored-by: xristianstefanov <[email protected]> * docs(Grid): fix copilot changes for the new ai features * Update components/grid/overview.md Co-authored-by: Yordan <[email protected]> * Update components/grid/smart-ai-features/overview.md Co-authored-by: Yordan <[email protected]> * Update components/grid/overview.md Co-authored-by: Dimo Dimov <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: xristianstefanov <[email protected]> Co-authored-by: Hristian Stefanov <[email protected]> Co-authored-by: Yordan <[email protected]> Co-authored-by: Dimo Dimov <[email protected]>
1 parent 509c483 commit 75495d6

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

components/grid/overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ The Blazor Grid supports all fundamental data operations out-of-the-box:
5858
* [Filtering](slug:components/grid/filtering)
5959
* [Grouping](slug:components/grid/features/grouping). The Grid can also [load the data for each group on demand](slug:grid-group-lod).
6060
* [Aggregates](slug:grid-aggregates)
61+
* Most data operations support [AI-driven natural language commands](slug:grid-ai-overview).
6162

6263

6364
## Editing
@@ -98,6 +99,7 @@ The Grid supports custom content in various parts of the component such as data
9899

99100
## More Blazor Grid Features
100101

102+
* [Prompt-controlled data operations](slug:grid-ai-overview)—manage the Grid through AI-enabled natural language prompts. The supported features include filtering, sorting, grouping, highlighting, column operations, paging, selection, and exporting.
101103
* [Selection](slug:grid-selection-overview)—select one or multiple rows through clicks or checkboxes or select one or multiple cells through clicks.
102104
* [State](slug:grid-state)—get or set the Grid configuration programmatically.
103105
* [Toolbar](slug:components/grid/features/toolbar)—define user actions in a toolbar above the header cells.
@@ -143,6 +145,7 @@ To execute these methods, obtain reference to the Grid instance via `@ref`.
143145

144146
* [Explore Grid data binding](slug:grid-data-binding)
145147
* [Learn about Grid columns](slug:components/grid/columns/bound)
148+
* [Control the Grid with natural language prompts](slug:grid-ai-overview)
146149

147150
## See Also
148151

components/grid/smart-ai-features/overview.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ position: 1
1212

1313
This article describes the built-in AI-enabled features of the Telerik Grid for Blazor. You can allow users to type prompts, which are sent to an AI service that suggests the appropriate data operations for the Grid to perform. The currently supported data operations include filtering, grouping, sorting, and highlighting of items.
1414

15+
## Supported Operations
16+
17+
The Prompt-Controlled DataGrid currently supports the following data operations through natural language prompts:
18+
19+
* Filtering&mdash;Filter data based on specific criteria (for example, "Show only products with price greater than 100").
20+
* **Sorting** - Sort data by one or multiple columns (for example, "Sort by name in ascending order").
21+
* **Grouping** - Group data by specific fields (for example, "Group by category").
22+
* **Highlighting** - Highlight specific rows or cells that meet certain conditions (for example, "Highlight products that are out of stock").
23+
* **Column Operations** – Resize, reorder (change column position), show/hide, and lock/unlock columns.
24+
* **Pagination** – Navigate between pages and adjust page sizes.
25+
* **Selection** – Select or deselect rows based on criteria, or select/deselect all.
26+
* **Export** – Export grid data to Excel, PDF, or CSV formats.
27+
1528
## API Reference
1629

1730
The following types and Grid methods are relevant to scenarios when you want to integrate AI functionality with the Telerik Grid.

0 commit comments

Comments
 (0)