Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/grid/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ The Blazor Grid supports all fundamental data operations out-of-the-box:
* [Filtering](slug:components/grid/filtering)
* [Grouping](slug:components/grid/features/grouping). The Grid can also [load the data for each group on demand](slug:grid-group-lod).
* [Aggregates](slug:grid-aggregates)
* The component supports most [data operations through AI-driven natural language commands](slug:grid-ai-overview).


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

## More Blazor Grid Features

* [Prompt-Controlled DataGrid](slug:grid-ai-overview)—control the Grid through natural language prompts using AI-enabled features for filtering, sorting, grouping, highlighting, column operations, paging, selection, and export.
* [Selection](slug:grid-selection-overview)—select one or multiple rows through clicks or checkboxes or select one or multiple cells through clicks.
* [State](slug:grid-state)—get or set the Grid configuration programmatically.
* [Toolbar](slug:components/grid/features/toolbar)—define user actions in a toolbar above the header cells.
Expand Down Expand Up @@ -143,6 +145,7 @@ To execute these methods, obtain reference to the Grid instance via `@ref`.

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

## See Also

Expand Down
13 changes: 13 additions & 0 deletions components/grid/smart-ai-features/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ position: 1

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.

## Supported Operations

The Prompt-Controlled DataGrid currently supports the following data operations through natural language prompts:

* **Filtering** - Filter data based on specific criteria (for example, "Show only products with price greater than 100").
* **Sorting** - Sort data by one or multiple columns (for example, "Sort by name in ascending order").
* **Grouping** - Group data by specific fields (for example, "Group by category").
* **Highlighting** - Highlight specific rows or cells that meet certain conditions (for example, "Highlight products that are out of stock").
* **Column Operations** – Resize, reorder (change column position), show/hide, and lock/unlock columns.
* **Pagination** – Navigate between pages and adjust page sizes.
* **Selection** – Select or deselect rows based on criteria, or select/deselect all.
* **Export** – Export grid data to Excel, PDF, or CSV formats.

## API Reference

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