Implementing Syncfusion Blazor DataGrid
The Syncfusion Blazor DataGrid (SfGrid<TValue>) is a high-performance, feature-rich component for displaying and manipulating tabular data. It supports data binding, sorting, filtering, grouping, paging, editing, selection, aggregates, export, virtual/infinite scrolling, templates, and more.
NuGet: Syncfusion.Blazor.Grid + Syncfusion.Blazor.Themes
Namespace: Syncfusion.Blazor.Grids
When to Use This Skill
Use this skill when you need to:
- Set up and configure a DataGrid in Blazor Server, WebAssembly, Web App, or MAUI
- Bind local or remote data (OData, HTTP, SfDataManager)
- Configure columns (type, format, template, frozen, reorder, resize, chooser)
- Implement sorting, filtering (FilterBar/Menu/Excel/CheckBox), or searching
- Enable grouping with lazy load or caption templates
- Configure paging with custom templates or SfPager
- Set up virtual scrolling, infinite scrolling for large datasets
- Implement editing (Normal/Dialog/Batch/Command column) with validation
- Configure selection (row, cell, checkbox) with programmatic control
- Use clipboard copy, AutoFill, or Paste features
- Add aggregates (footer, group, caption, reactive)
- Use row/column templates, detail template, row drag-drop
- Configure toolbar, context menu, column menu, column chooser
- Export data to Excel or PDF
- Manage print functionality
- Optimize performance (SetRowDataAsync, PreventRender)
- Handle DataGrid events
- Manage state persistence (EnablePersistence)
- Customize styling and appearance
- Enable adaptive UI for mobile/responsive layouts
🔒 Mandatory Key Rules
These rules govern how this skill MUST behave. They are mandatory and must be strictly followed.
1. Purpose and Responsibility
Your responsibility is to interpret any natural‑language user request and provide:
- Accurate
- Complete
- Validated
information about all supported aspects of the Syncfusion Blazor DataGrid, including:
- Public APIs
- Properties
- Events
- Features
- Behaviors
2. Accuracy and API Compliance
The Skill MUST:
- Use only officially supported Syncfusion DataGrid features.
- NEVER invent APIs, methods, properties, events, behaviors, or future features.
- NEVER provide unsupported or hypothetical code samples.
- ALWAYS follow official Syncfusion component design patterns.
If a feature is not supported:
- Clearly state the limitation.
- Suggest a supported alternative when possible.
3. Interpreting Natural-Language Requests
When user requests are incomplete:
- Infer reasonable assumptions using official Grid best practices.
- Fill missing gaps with accurate and relevant information.
- Request clarification only when essential.
4. Response Quality Requirements
Every response MUST:
- Be technically accurate
- Be complete and well‑structured
- Include required dependencies and configuration notes
- Follow real, documented Syncfusion API behavior
- Avoid contradictions or ambiguity
5. Handling Unsupported User Requests
If the user asks for an unsupported capability:
- Explicitly state that it is not supported
- Suggest official alternatives or valid workarounds
- NEVER simulate or fabricate impossible functionality
6. Design Pattern Enforcement
The Skill MUST follow Syncfusion official patterns, including:
- Correct component structure (
SfGrid, GridColumn, GridEditSettings, etc.)
- Proper async event and API usage
- Valid configuration properties and enums
- Supported data‑binding approaches
- Real event patterns and names
7. Quality, Completeness & Reliability
The Skill MUST:
- Use only validated and real Grid capabilities
- Provide actionable and implementation‑ready guidance
- Ensure clarity so users can follow without guesswork
- Maintain clean, readable, and professional formatting
8. No-Hallucination Safeguard
The Skill MUST NOT:
- Invent non‑existent APIs or behavior
- Suggest unsupported modes, features, or configuration
- Provide incorrect, misleading, or unverifiable code
- Describe undocumented internal behavior
If unsure:
- Ask for clarification OR
- Clearly state the limitation
9. Event Name Verification Requirement
CRITICAL: Event names MUST be verified against references/events.md BEFORE providing code examples. All grid events MUST be defined inside the <GridEvents> component
Common Mistakes to Avoid:
- ❌
OnSortChange - Does NOT exist. Use Sorting, Sorted instead
- ❌
OnFilterChange - Does NOT exist. Use Filtering, Filtered instead
- ❌
OnPageChange - Does NOT exist. Use PageChanging, PageChanged instead
- ❌
OnGroupChange - Does NOT exist. Use Grouping, Grouped instead
Rule: ALWAYS cross-reference references/events.md for:
- Exact event names (case-sensitive)
- Event argument types
- Whether events are cancelable
- When they fire (before/after operation)
Verification Checklist Before Providing Event Code:
- Check if event name exists in
references/events.md
- Verify the correct
EventArgs type
- Confirm
Cancelable status (✅ or ❌)
- Test against actual Syncfusion documentation
- Never assume naming conventions (e.g.,
On prefix, Change suffix)
Strict Rules for Grid Events
1. Event Handlers MUST be in <GridEvents> Component
- ✅ Define ALL event handlers inside
<GridEvents TValue="YourType">
- ✅ Use the exact event names as properties (e.g.,
DataBound, RowSelecting, Grouped)
- ❌ DO NOT use
@onEventName syntax on <SfGrid>
- ❌ DO NOT define event handlers on any root element
2. Correct Event Handler Signatures
- ✅ Use
async Task for event handlers
- ✅ Event handlers may have specific parameter types (e.g.,
GridEventArgs, RowSelectEventArgs)
- ✅ Some events have no parameters (e.g.,
DataBound(), Created())
- ❌ Do not use synchronous
void methods for async operations
3. API Method Calls MUST NOT be in Lifecycle Events
- ❌ DO NOT call API methods in
OnInitialized()
- ❌ DO NOT call API methods in
OnAfterRenderAsync()
- ❌ DO NOT call API methods in
OnParametersSet()
- ✅ ONLY call API methods in response to user interactions (button clicks, dropdown changes, etc.)
- ✅ API methods CAN be called inside GridEvents handlers
4. Use Async/Await Pattern
- ✅ Always use
await with async API methods
- ✅ Define event handlers as
async Task
- ✅ Mark code block methods as
async Task
- ❌ Do not use synchronous method calls for async operations
5. Grid Reference Required for API Calls
- ✅ Use
@ref="Grid" to get the Grid instance
- ✅ Use the reference to call API methods (e.g.,
await Grid.GroupColumnAsync())
- ❌ Do not attempt to call methods without a reference
6. Event Types Must Match GridEvents TValue
- ✅ Set
TValue="YourDataType" to match your data model
- ✅ All event handlers will be properly typed with this model
- ❌ Do not use generic or wrong type for TValue
Navigation Guide
Setup & Getting Started
📄 Read: references/getting-started.md
- NuGet install,
_Imports.razor, Program.cs, theme/script setup, basic grid
📄 Read: references/getting-started-app-types.md
- Server App, Web App (Auto/WASM), MAUI variants
Data
📄 Read: references/data-binding.md
- Local (List, ExpandoObject, DynamicObject, DataTable, ObservableCollection)
Connecting to Adaptors (Remote Data)
📄 Read: references/odatav4-adaptor.md
- OData V4 service setup, ODataConventionModelBuilder, [EnableQuery], automatic $filter/$orderby/$skip/$top, CRUD with PATCH/DELETE
📄 Read: references/web-api-adaptor.md
- Web API with { Items, Count } response, manual $filter/$orderby/$skip/$top QueryString parsing, CRUD with GET/POST/PUT/DELETE
- Security note: Do NOT bind
SfDataManager.Url to arbitrary user-supplied URLs. Use an operator-configured string variable (for example Url="@DataApiUrl" where DataApiUrl is read from ALLOWED_API_URL in configuration), an internal proxy/gateway, field/operator whitelists, and server-side validation/sanitization. See references/web-api-adaptor.md Security Considerations for examples.
📄 Read: references/url-adaptor.md
- Custom API with { result, count } response, DataManagerRequest POST body, DataOperations helpers, InsertUrl/UpdateUrl/RemoveUrl/CrudUrl/BatchUrl
- Security note: Use a configuration-backed URL variable (for example
Url="@DataApiUrl" where DataApiUrl is read from ALLOWED_API_URL in configuration), avoid user-supplied endpoints, and route third-party requests through an internal proxy/gateway. See references/url-adaptor.md for examples and configuration snippets.
📄 Read: references/custom-adaptor.md
- DataAdaptor abstract class, override Read/Insert/Update/Remove/BatchUpdate, service injection, adaptor as component, custom parameters via Query.AddParams
- Security note: When implementing
CustomAdaptor, do not trust dm.Params or user-supplied endpoints. Use operator-configured endpoints, validate dm.Params, whitelist fields/operators, and route third-party calls through a proxy. See references/custom-adaptor.md Security Considerations for examples.
Columns
📄 Read: references/columns.md
- ColumnType, Format, TextAlign, frozen, reorder, resize, chooser, stacked headers, column menu, foreign key
📄 Read: references/cell.md
- QueryCellInfo, CustomAttributes, ClipMode, GridLines, tooltips
Sorting, Filtering, Searching
📄 Read: references/sorting.md
- AllowSorting, multi-sort, SortColumnAsync, ClearSortingAsync
📄 Read: references/filtering.md
- AllowFiltering, FilterType (FilterBar/Menu/Excel/CheckBox), operators, FilterByColumnAsync
📄 Read: references/searching.md
- Toolbar Search, SearchAsync, GridSearchSettings
Grouping & Paging
📄 Read: references/grouping.md
- AllowGrouping, lazy load grouping, CaptionTemplate, programmatic group/ungroup
📄 Read: references/paging.md
- AllowPaging, GridPageSettings, pager template, GoToPageAsync
Scrolling
📄 Read: references/scrolling.md
- Height/Width, sticky header, ScrollIntoViewAsync
📄 Read: references/virtual-scrolling.md
- EnableVirtualization, EnableColumnVirtualization, OverscanCount, limitations
📄 Read: references/infinite-scrolling.md
- EnableInfiniteScrolling, GridInfiniteScrollSettings, cache mode, limitations
Editing
📄 Read: references/editing.md
- GridEditSettings, EditMode (Normal/Dialog/Batch/CommandColumn), ValidationRules, EditType, EditTemplate, CRUD methods
Read: references/editing-patterns.md
- Cancel edit based on condition, disable editing for specific rows
- Provide new/edited item via events, default column values, new row position
- Always-show add-new-row form, delete multiple rows, single-click editing
- Save new row at a specific index, inline template editing
📄 Read: references/editing-validation.md
- Per-column
ValidationRules, Data Annotation attributes ([Required], [Range], etc.)
- Custom validation attributes, complex type validation, custom validator component
Selection
📄 Read: references/selection.md
- AllowSelection, SelectionMode, SelectionType, checkbox selection, programmatic selection
📄 Read: references/clipboard.md
- Clipboard copy (Ctrl+C / Ctrl+Shift+H), CopyAsync, AutoFill drag handle, Paste (Ctrl+V), batch editing requirements
Aggregates
📄 Read: references/aggregates.md
- GridAggregates, AggregateType, FooterTemplate, GroupFooterTemplate, GroupCaptionTemplate, reactive aggregates
Row Features & Templates
📄 Read: references/row-features.md
- RowDataBound, row drag-drop, row height, row spanning, RowTemplate
📄Read: references/templates-structural.md
- ColumnTemplate (image, hyperlink, checkbox, SfChip), HeaderTemplate, RowTemplate, RowTemplate formatting, DetailTemplate, expand/collapse APIs, expand on load, hide expand icon, custom CSS icons, hierarchical nested Grid
📄 Read: references/templates-interactive.md
- ToolbarTemplate, Column EditTemplate, GridEditSettings Template, disable inputs on add vs edit, triple underscore nested binding, focus editor on dialog open, RowUpdating transform, FooterTemplate, CaptionTemplate, custom Blazor component in caption, locale customization, PagerTemplate
Toolbar, Context Menu
📄 Read: references/toolbar.md
- Built-in/custom toolbar items, OnToolbarClick, ToolbarTemplate
📄 Read: references/context-menu.md
- ContextMenuItems, custom items, ContextMenuItemClicked
Export & Print
📄 Read: references/excel-export.md
- AllowExcelExport, ExportToExcelAsync, ExcelExportProperties, theme/template export
📄 Read: references/pdf-export.md
- AllowPdfExport, ExportToPdfAsync, PdfExportProperties, template PDF export
📄 Read: references/print.md
Performance, Events, State
📄 Read: references/performance.md
- SetRowDataAsync, PreventRender, WebAssembly optimization, column virtualization tips
📄 Read: references/events.md
- Complete GridEvents reference: all edit, selection, filter, sort, group, page, toolbar, export events
📄 Read: references/state-management.md
- EnablePersistence, GetPersistDataAsync, SetPersistDataAsync, ResetPersistDataAsync
Styling & Adaptive UI
📄 Read: references/style-and-appearance.md
- CSS classes for grid, header, rows, filtering, editing, grouping, aggregates
📄 Read: references/adaptive-layout.md
- EnableAdaptiveUI, RowRenderingMode, AdaptiveUIMode, mobile-responsive patterns
Quick Start
@page "/datagrid-demo"
@using Syncfusion.Blazor.Grids
<SfGrid DataSource="@Orders" AllowPaging="true" AllowSorting="true" AllowFiltering="true">
<GridPageSettings PageSize="10"></GridPageSettings>
<GridColumns>
<GridColumn Field="OrderID" HeaderText="Order ID" IsPrimaryKey="true" Width="120" TextAlign="TextAlign.Right"></GridColumn>
<GridColumn Field="CustomerID" HeaderText="Customer" Width="150"></GridColumn>
<GridColumn Field="Freight" HeaderText="Freight" Format="C2" Width="120" TextAlign="TextAlign.Right"></GridColumn>
<GridColumn Field="OrderDate" HeaderText="Order Date" Format="d" Width="150" Type="ColumnType.Date"></GridColumn>
<GridColumn Field="ShipCountry" HeaderText="Ship Country" Width="150"></GridColumn>
</GridColumns>
</SfGrid>
@code {
public List<Order> Orders = new List<Order>
{
new Order { OrderID = 10248, CustomerID = "VINET", Freight = 32.38, OrderDate = new DateTime(1996,7,4), ShipCountry = "France" },
new Order { OrderID = 10249, CustomerID = "TOMSP", Freight = 11.61, OrderDate = new DateTime(1996,7,5), ShipCountry = "Germany" },
};
public class Order
{
public int OrderID { get; set; }
public string CustomerID { get; set; }
public double Freight { get; set; }
public DateTime OrderDate { get; set; }
public string ShipCountry { get; set; }
}
}
Common Patterns
Grid with Editing + Toolbar
<SfGrid DataSource="@Orders" Toolbar="@(new List<string>() { "Add","Edit","Delete","Update","Cancel" })">
<GridEditSettings AllowAdding="true" AllowEditing="true" AllowDeleting="true" Mode="EditMode.Normal"></GridEditSettings>
<GridColumns>
<GridColumn Field="OrderID" IsPrimaryKey="true" ValidationRules="@(new ValidationRules{Required=true})"></GridColumn>
<GridColumn Field="CustomerID" ValidationRules="@(new ValidationRules{Required=true})"></GridColumn>
<GridColumn Field="Freight" EditType="EditType.NumericEdit"></GridColumn>
</GridColumns>
</SfGrid>
Grid with Grouping + Paging
<SfGrid DataSource="@Orders" AllowGrouping="true" AllowPaging="true">
<GridGroupSettings Columns="@(new string[]{"ShipCountry"})"></GridGroupSettings>
<GridPageSettings PageSize="10"></GridPageSettings>
<GridColumns>
<GridColumn Field="OrderID" Width="120"></GridColumn>
<GridColumn Field="CustomerID" Width="150"></GridColumn>
<GridColumn Field="ShipCountry" Width="150"></GridColumn>
</GridColumns>
</SfGrid>
Grid Reference for Programmatic Control
<SfGrid @ref="Grid" DataSource="@Orders">...</SfGrid>
@code {
SfGrid<Order> Grid;
// Programmatic operations:
// await Grid.SortColumnAsync("OrderID", SortDirection.Ascending, false);
// await Grid.FilterByColumnAsync("ShipCountry", "equal", "France");
// await Grid.GoToPageAsync(2);
// await Grid.StartEditAsync();
// await Grid.SelectRowAsync(0);
}
Key Properties at a Glance
| Property |
Description |
DataSource |
Bind IEnumerable<T> or DataManagerRequest |
AllowPaging |
Enable paging |
AllowSorting |
Enable sorting |
AllowFiltering |
Enable column filtering |
AllowGrouping |
Enable row grouping |
AllowSelection |
Enable row/cell selection |
Height / Width |
Fixed dimensions for scrolling |
Toolbar |
Built-in or custom toolbar items |
EnableVirtualization |
Row virtualization for large data |
EnableInfiniteScrolling |
Infinite scroll loading |
EnablePersistence |
Save state to localStorage |
EnableAdaptiveUI |
Mobile-responsive rendering |
1---2name: syncfusion-blazor-datagrid3description: Implements the Syncfusion Blazor DataGrid (SfGrid) for efficient tabular operations such as sorting, filtering, paging, grouping, editing, aggregates, virtualization, lazy‑load grouping, and row or column spanning. Use this skill when building data‑grid workflows in Blazor Server, WebAssembly, Web App, or MAUI applications. Supports Excel/PDF export, virtual or infinite scrolling, customizable templates, and grid state persistence for consistent and optimized data‑grid behavior.4---5
6***
7
8# Implementing Syncfusion Blazor DataGrid
9
10The Syncfusion Blazor DataGrid (`SfGrid<TValue>`) is a high-performance, feature-rich component for displaying and manipulating tabular data. It supports data binding, sorting, filtering, grouping, paging, editing, selection, aggregates, export, virtual/infinite scrolling, templates, and more.
11
12**NuGet:** `Syncfusion.Blazor.Grid` + `Syncfusion.Blazor.Themes`
13**Namespace:** `Syncfusion.Blazor.Grids`
14
15## When to Use This Skill
16
17Use this skill when you need to:
18- Set up and configure a DataGrid in Blazor Server, WebAssembly, Web App, or MAUI
19- Bind local or remote data (OData, HTTP, SfDataManager)
20- Configure columns (type, format, template, frozen, reorder, resize, chooser)
21- Implement sorting, filtering (FilterBar/Menu/Excel/CheckBox), or searching
22- Enable grouping with lazy load or caption templates
23- Configure paging with custom templates or SfPager
24- Set up virtual scrolling, infinite scrolling for large datasets
25- Implement editing (Normal/Dialog/Batch/Command column) with validation
26- Configure selection (row, cell, checkbox) with programmatic control
27- Use clipboard copy, AutoFill, or Paste features
28- Add aggregates (footer, group, caption, reactive)
29- Use row/column templates, detail template, row drag-drop
30- Configure toolbar, context menu, column menu, column chooser
31- Export data to Excel or PDF
32- Manage print functionality
33- Optimize performance (SetRowDataAsync, PreventRender)
34- Handle DataGrid events
35- Manage state persistence (EnablePersistence)
36- Customize styling and appearance
37- Enable adaptive UI for mobile/responsive layouts
38
39# 🔒 Mandatory Key Rules
40
41These rules govern how this skill MUST behave. They are mandatory and must be strictly followed.
42
43## 1. Purpose and Responsibility
44
45Your responsibility is to interpret any natural‑language user request and provide:
46
47* Accurate
48* Complete
49* Validated
50
51information about all supported aspects of the **Syncfusion Blazor DataGrid**, including:
52
53* Public APIs
54* Properties
55* Events
56* Features
57* Behaviors
58
59## 2. Accuracy and API Compliance
60
61The Skill MUST:
62
63* Use **only officially supported** Syncfusion DataGrid features.
64* **NEVER** invent APIs, methods, properties, events, behaviors, or future features.
65* **NEVER** provide unsupported or hypothetical code samples.
66* ALWAYS follow official Syncfusion component design patterns.
67
68If a feature is **not supported**:
69
70* Clearly state the limitation.
71* Suggest a supported alternative when possible.
72
73## 3. Interpreting Natural-Language Requests
74
75When user requests are incomplete:
76
77* Infer reasonable assumptions using official Grid best practices.
78* Fill missing gaps with accurate and relevant information.
79* Request clarification **only** when essential.
80
81## 4. Response Quality Requirements
82
83Every response MUST:
84
85* Be technically accurate
86* Be complete and well‑structured
87* Include required dependencies and configuration notes
88* Follow real, documented Syncfusion API behavior
89* Avoid contradictions or ambiguity
90
91## 5. Handling Unsupported User Requests
92
93If the user asks for an unsupported capability:
94
95* Explicitly state that it is not supported
96* Suggest official alternatives or valid workarounds
97* NEVER simulate or fabricate impossible functionality
98
99## 6. Design Pattern Enforcement
100
101The Skill MUST follow Syncfusion official patterns, including:
102
103* Correct component structure (`SfGrid`, `GridColumn`, `GridEditSettings`, etc.)
104* Proper async event and API usage
105* Valid configuration properties and enums
106* Supported data‑binding approaches
107* Real event patterns and names
108
109## 7. Quality, Completeness & Reliability
110
111The Skill MUST:
112
113* Use only validated and real Grid capabilities
114* Provide actionable and implementation‑ready guidance
115* Ensure clarity so users can follow without guesswork
116* Maintain clean, readable, and professional formatting
117
118## 8. No-Hallucination Safeguard
119
120The Skill MUST NOT:
121
122* Invent non‑existent APIs or behavior
123* Suggest unsupported modes, features, or configuration
124* Provide incorrect, misleading, or unverifiable code
125* Describe undocumented internal behavior
126
127If unsure:
128
129* Ask for clarification **OR**
130* Clearly state the limitation
131
132## 9. Event Name Verification Requirement
133
134**CRITICAL:** Event names MUST be verified against `references/events.md` BEFORE providing code examples. All grid events MUST be defined inside the `<GridEvents>` component
135
136**Common Mistakes to Avoid:**
137
138* ❌ `OnSortChange` - Does NOT exist. Use `Sorting`, `Sorted` instead
139* ❌ `OnFilterChange` - Does NOT exist. Use `Filtering`, `Filtered` instead
140* ❌ `OnPageChange` - Does NOT exist. Use `PageChanging`, `PageChanged` instead
141* ❌ `OnGroupChange` - Does NOT exist. Use `Grouping`, `Grouped` instead
142
143**Rule:** ALWAYS cross-reference `references/events.md` for:
144
145* Exact event names (case-sensitive)
146* Event argument types
147* Whether events are cancelable
148* When they fire (before/after operation)
149
150**Verification Checklist Before Providing Event Code:**
151
1521. Check if event name exists in `references/events.md`
1532. Verify the correct `EventArgs` type
1543. Confirm `Cancelable` status (✅ or ❌)
1554. Test against actual Syncfusion documentation
1565. Never assume naming conventions (e.g., `On` prefix, `Change` suffix)
157
158---
159
160## Strict Rules for Grid Events
161
162### 1. **Event Handlers MUST be in `<GridEvents>` Component**
163 - ✅ Define ALL event handlers inside `<GridEvents TValue="YourType">`
164 - ✅ Use the exact event names as properties (e.g., `DataBound`, `RowSelecting`, `Grouped`)
165 - ❌ DO NOT use `@onEventName` syntax on `<SfGrid>`
166 - ❌ DO NOT define event handlers on any root element
167
168### 2. **Correct Event Handler Signatures**
169 - ✅ Use `async Task` for event handlers
170 - ✅ Event handlers may have specific parameter types (e.g., `GridEventArgs`, `RowSelectEventArgs`)
171 - ✅ Some events have no parameters (e.g., `DataBound()`, `Created()`)
172 - ❌ Do not use synchronous `void` methods for async operations
173
174### 3. **API Method Calls MUST NOT be in Lifecycle Events**
175 - ❌ DO NOT call API methods in `OnInitialized()`
176 - ❌ DO NOT call API methods in `OnAfterRenderAsync()`
177 - ❌ DO NOT call API methods in `OnParametersSet()`
178 - ✅ ONLY call API methods in response to user interactions (button clicks, dropdown changes, etc.)
179 - ✅ API methods CAN be called inside GridEvents handlers
180
181### 4. **Use Async/Await Pattern**
182 - ✅ Always use `await` with async API methods
183 - ✅ Define event handlers as `async Task`
184 - ✅ Mark code block methods as `async Task`
185 - ❌ Do not use synchronous method calls for async operations
186
187### 5. **Grid Reference Required for API Calls**
188 - ✅ Use `@ref="Grid"` to get the Grid instance
189 - ✅ Use the reference to call API methods (e.g., `await Grid.GroupColumnAsync()`)
190 - ❌ Do not attempt to call methods without a reference
191
192### 6. **Event Types Must Match GridEvents TValue**
193 - ✅ Set `TValue="YourDataType"` to match your data model
194 - ✅ All event handlers will be properly typed with this model
195 - ❌ Do not use generic or wrong type for TValue
196
197---
198
199## Navigation Guide
200
201### Setup & Getting Started
202📄 **Read:** [references/getting-started.md](references/getting-started.md)
203- NuGet install, `_Imports.razor`, `Program.cs`, theme/script setup, basic grid
204
205📄 **Read:** [references/getting-started-app-types.md](references/getting-started-app-types.md)
206- Server App, Web App (Auto/WASM), MAUI variants
207
208### Data
209📄 **Read:** [references/data-binding.md](references/data-binding.md)
210- Local (List, ExpandoObject, DynamicObject, DataTable, ObservableCollection)
211
212### Connecting to Adaptors (Remote Data)
213📄 **Read:** [references/odatav4-adaptor.md](references/odatav4-adaptor.md)
214- OData V4 service setup, ODataConventionModelBuilder, [EnableQuery], automatic $filter/$orderby/$skip/$top, CRUD with PATCH/DELETE
215
216📄 **Read:** [references/web-api-adaptor.md](references/web-api-adaptor.md)
217- Web API with { Items, Count } response, manual $filter/$orderby/$skip/$top QueryString parsing, CRUD with GET/POST/PUT/DELETE
218- **Security note:** Do NOT bind `SfDataManager.Url` to arbitrary user-supplied URLs. Use an operator-configured string variable (for example `Url="@DataApiUrl"` where `DataApiUrl` is read from `ALLOWED_API_URL` in configuration), an internal proxy/gateway, field/operator whitelists, and server-side validation/sanitization. See [references/web-api-adaptor.md](references/web-api-adaptor.md) `Security Considerations` for examples.
219
220📄 **Read:** [references/url-adaptor.md](references/url-adaptor.md)
221- Custom API with { result, count } response, DataManagerRequest POST body, DataOperations helpers, InsertUrl/UpdateUrl/RemoveUrl/CrudUrl/BatchUrl
222- **Security note:** Use a configuration-backed URL variable (for example `Url="@DataApiUrl"` where `DataApiUrl` is read from `ALLOWED_API_URL` in configuration), avoid user-supplied endpoints, and route third-party requests through an internal proxy/gateway. See [references/url-adaptor.md](references/url-adaptor.md) for examples and configuration snippets.
223
224📄 **Read:** [references/custom-adaptor.md](references/custom-adaptor.md)
225- DataAdaptor abstract class, override Read/Insert/Update/Remove/BatchUpdate, service injection, adaptor as component, custom parameters via Query.AddParams
226- **Security note:** When implementing `CustomAdaptor`, do not trust `dm.Params` or user-supplied endpoints. Use operator-configured endpoints, validate `dm.Params`, whitelist fields/operators, and route third-party calls through a proxy. See [references/custom-adaptor.md](references/custom-adaptor.md) `Security Considerations` for examples.
227
228### Columns
229📄 **Read:** [references/columns.md](references/columns.md)
230- ColumnType, Format, TextAlign, frozen, reorder, resize, chooser, stacked headers, column menu, foreign key
231
232📄 **Read:** [references/cell.md](references/cell.md)
233- QueryCellInfo, CustomAttributes, ClipMode, GridLines, tooltips
234
235### Sorting, Filtering, Searching
236📄 **Read:** [references/sorting.md](references/sorting.md)
237- AllowSorting, multi-sort, SortColumnAsync, ClearSortingAsync
238
239📄 **Read:** [references/filtering.md](references/filtering.md)
240- AllowFiltering, FilterType (FilterBar/Menu/Excel/CheckBox), operators, FilterByColumnAsync
241
242📄 **Read:** [references/searching.md](references/searching.md)
243- Toolbar Search, SearchAsync, GridSearchSettings
244
245### Grouping & Paging
246📄 **Read:** [references/grouping.md](references/grouping.md)
247- AllowGrouping, lazy load grouping, CaptionTemplate, programmatic group/ungroup
248
249📄 **Read:** [references/paging.md](references/paging.md)
250- AllowPaging, GridPageSettings, pager template, GoToPageAsync
251
252### Scrolling
253📄 **Read:** [references/scrolling.md](references/scrolling.md)
254- Height/Width, sticky header, ScrollIntoViewAsync
255
256📄 **Read:** [references/virtual-scrolling.md](references/virtual-scrolling.md)
257- EnableVirtualization, EnableColumnVirtualization, OverscanCount, limitations
258
259📄 **Read:** [references/infinite-scrolling.md](references/infinite-scrolling.md)
260- EnableInfiniteScrolling, GridInfiniteScrollSettings, cache mode, limitations
261
262### Editing
263📄 **Read:** [references/editing.md](references/editing.md)
264- GridEditSettings, EditMode (Normal/Dialog/Batch/CommandColumn), ValidationRules, EditType, EditTemplate, CRUD methods
265
266 **Read:** [references/editing-patterns.md](references/editing-patterns.md)
267- Cancel edit based on condition, disable editing for specific rows
268- Provide new/edited item via events, default column values, new row position
269- Always-show add-new-row form, delete multiple rows, single-click editing
270- Save new row at a specific index, inline template editing
271
272📄 **Read:** [references/editing-validation.md](references/editing-validation.md)
273- Per-column `ValidationRules`, Data Annotation attributes (`[Required]`, `[Range]`, etc.)
274- Custom validation attributes, complex type validation, custom validator component
275
276
277### Selection
278📄 **Read:** [references/selection.md](references/selection.md)
279- AllowSelection, SelectionMode, SelectionType, checkbox selection, programmatic selection
280
281📄 **Read:** [references/clipboard.md](references/clipboard.md)
282- Clipboard copy (Ctrl+C / Ctrl+Shift+H), CopyAsync, AutoFill drag handle, Paste (Ctrl+V), batch editing requirements
283
284### Aggregates
285📄 **Read:** [references/aggregates.md](references/aggregates.md)
286- GridAggregates, AggregateType, FooterTemplate, GroupFooterTemplate, GroupCaptionTemplate, reactive aggregates
287
288### Row Features & Templates
289📄 **Read:** [references/row-features.md](references/row-features.md)
290- RowDataBound, row drag-drop, row height, row spanning, RowTemplate
291
292📄**Read:** [references/templates-structural.md](references/templates-structural.md)
293- ColumnTemplate (image, hyperlink, checkbox, SfChip), HeaderTemplate, RowTemplate, RowTemplate formatting, DetailTemplate, expand/collapse APIs, expand on load, hide expand icon, custom CSS icons, hierarchical nested Grid
294
295📄 **Read:** [references/templates-interactive.md](references/templates-interactive.md)
296- ToolbarTemplate, Column EditTemplate, GridEditSettings Template, disable inputs on add vs edit, triple underscore nested binding, focus editor on dialog open, RowUpdating transform, FooterTemplate, CaptionTemplate, custom Blazor component in caption, locale customization, PagerTemplate
297
298### Toolbar, Context Menu
299📄 **Read:** [references/toolbar.md](references/toolbar.md)
300- Built-in/custom toolbar items, OnToolbarClick, ToolbarTemplate
301
302📄 **Read:** [references/context-menu.md](references/context-menu.md)
303- ContextMenuItems, custom items, ContextMenuItemClicked
304
305### Export & Print
306📄 **Read:** [references/excel-export.md](references/excel-export.md)
307- AllowExcelExport, ExportToExcelAsync, ExcelExportProperties, theme/template export
308
309📄 **Read:** [references/pdf-export.md](references/pdf-export.md)
310- AllowPdfExport, ExportToPdfAsync, PdfExportProperties, template PDF export
311
312📄 **Read:** [references/print.md](references/print.md)
313- PrintAsync, PrintMode
314
315### Performance, Events, State
316📄 **Read:** [references/performance.md](references/performance.md)
317- SetRowDataAsync, PreventRender, WebAssembly optimization, column virtualization tips
318
319📄 **Read:** [references/events.md](references/events.md)
320- Complete GridEvents<TValue> reference: all edit, selection, filter, sort, group, page, toolbar, export events
321
322📄 **Read:** [references/state-management.md](references/state-management.md)
323- EnablePersistence, GetPersistDataAsync, SetPersistDataAsync, ResetPersistDataAsync
324
325### Styling & Adaptive UI
326📄 **Read:** [references/style-and-appearance.md](references/style-and-appearance.md)
327- CSS classes for grid, header, rows, filtering, editing, grouping, aggregates
328
329📄 **Read:** [references/adaptive-layout.md](references/adaptive-layout.md)
330- EnableAdaptiveUI, RowRenderingMode, AdaptiveUIMode, mobile-responsive patterns
331
332## Quick Start
333
334```razor
335@page "/datagrid-demo"
336@using Syncfusion.Blazor.Grids
337
338<SfGrid DataSource="@Orders" AllowPaging="true" AllowSorting="true" AllowFiltering="true">
339 <GridPageSettings PageSize="10"></GridPageSettings>
340 <GridColumns>
341 <GridColumn Field="OrderID" HeaderText="Order ID" IsPrimaryKey="true" Width="120" TextAlign="TextAlign.Right"></GridColumn>
342 <GridColumn Field="CustomerID" HeaderText="Customer" Width="150"></GridColumn>
343 <GridColumn Field="Freight" HeaderText="Freight" Format="C2" Width="120" TextAlign="TextAlign.Right"></GridColumn>
344 <GridColumn Field="OrderDate" HeaderText="Order Date" Format="d" Width="150" Type="ColumnType.Date"></GridColumn>
345 <GridColumn Field="ShipCountry" HeaderText="Ship Country" Width="150"></GridColumn>
346 </GridColumns>
347</SfGrid>
348
349@code {
350 public List<Order> Orders = new List<Order>
351 {
352 new Order { OrderID = 10248, CustomerID = "VINET", Freight = 32.38, OrderDate = new DateTime(1996,7,4), ShipCountry = "France" },
353 new Order { OrderID = 10249, CustomerID = "TOMSP", Freight = 11.61, OrderDate = new DateTime(1996,7,5), ShipCountry = "Germany" },
354 };
355 public class Order
356 {
357 public int OrderID { get; set; }
358 public string CustomerID { get; set; }
359 public double Freight { get; set; }
360 public DateTime OrderDate { get; set; }
361 public string ShipCountry { get; set; }
362 }
363}
364```
365
366## Common Patterns
367
368### Grid with Editing + Toolbar
369```razor
370<SfGrid DataSource="@Orders" Toolbar="@(new List<string>() { "Add","Edit","Delete","Update","Cancel" })">
371 <GridEditSettings AllowAdding="true" AllowEditing="true" AllowDeleting="true" Mode="EditMode.Normal"></GridEditSettings>
372 <GridColumns>
373 <GridColumn Field="OrderID" IsPrimaryKey="true" ValidationRules="@(new ValidationRules{Required=true})"></GridColumn>
374 <GridColumn Field="CustomerID" ValidationRules="@(new ValidationRules{Required=true})"></GridColumn>
375 <GridColumn Field="Freight" EditType="EditType.NumericEdit"></GridColumn>
376 </GridColumns>
377</SfGrid>
378```
379
380### Grid with Grouping + Paging
381```razor
382<SfGrid DataSource="@Orders" AllowGrouping="true" AllowPaging="true">
383 <GridGroupSettings Columns="@(new string[]{"ShipCountry"})"></GridGroupSettings>
384 <GridPageSettings PageSize="10"></GridPageSettings>
385 <GridColumns>
386 <GridColumn Field="OrderID" Width="120"></GridColumn>
387 <GridColumn Field="CustomerID" Width="150"></GridColumn>
388 <GridColumn Field="ShipCountry" Width="150"></GridColumn>
389 </GridColumns>
390</SfGrid>
391```
392
393### Grid Reference for Programmatic Control
394```razor
395<SfGrid @ref="Grid" DataSource="@Orders">...</SfGrid>
396@code {
397 SfGrid<Order> Grid;
398 // Programmatic operations:
399 // await Grid.SortColumnAsync("OrderID", SortDirection.Ascending, false);
400 // await Grid.FilterByColumnAsync("ShipCountry", "equal", "France");
401 // await Grid.GoToPageAsync(2);
402 // await Grid.StartEditAsync();
403 // await Grid.SelectRowAsync(0);
404}
405```
406
407## Key Properties at a Glance
408
409| Property | Description |
410|---|---|
411| `DataSource` | Bind `IEnumerable<T>` or `DataManagerRequest` |
412| `AllowPaging` | Enable paging |
413| `AllowSorting` | Enable sorting |
414| `AllowFiltering` | Enable column filtering |
415| `AllowGrouping` | Enable row grouping |
416| `AllowSelection` | Enable row/cell selection |
417| `Height` / `Width` | Fixed dimensions for scrolling |
418| `Toolbar` | Built-in or custom toolbar items |
419| `EnableVirtualization` | Row virtualization for large data |
420| `EnableInfiniteScrolling` | Infinite scroll loading |
421| `EnablePersistence` | Save state to localStorage |
422| `EnableAdaptiveUI` | Mobile-responsive rendering |
423````