Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

syncfusion-blazor-datagrid同步融合 Blazor 数据网格

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

1,187

周安装

48

GitHub Stars

公开资料未说明

下载量

372
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-blazor-datagrid(同步融合 Blazor 数据网格)
来源仓库:https://github.com/syncfusion/blazor-ui-components-skills
仓库路径:skills/syncfusion-blazor-datagrid
安装命令:
npx skills add https://github.com/syncfusion/blazor-ui-components-skills --skill syncfusion-blazor-datagrid
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/blazor-ui-components-skills --skill syncfusion-blazor-datagrid

简介

高性能数据表格,支持排序、过滤、分组和分页操作。

  • 适合管理系统中的列表展示,尤其适用于百万级数据的渐进式加载。
  • 通过 DataSource 配置远程查询,前端仅渲染可视区域单元格。
  • 列宽自适应和内容截断需结合 CSS 控制,避免布局错乱。
  • 导出 Excel 功能会触发完整数据集加载,注意内存和超时限制。

SKILL.md


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:

  1. Check if event name exists in references/events.md
  2. Verify the correct EventArgs type
  3. Confirm Cancelable status (✅ or ❌)
  4. Test against actual Syncfusion documentation
  5. 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

  • PrintAsync, PrintMode

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

PropertyDescription
DataSourceBind IEnumerable<T> or DataManagerRequest
AllowPagingEnable paging
AllowSortingEnable sorting
AllowFilteringEnable column filtering
AllowGroupingEnable row grouping
AllowSelectionEnable row/cell selection
Height / WidthFixed dimensions for scrolling
ToolbarBuilt-in or custom toolbar items
EnableVirtualizationRow virtualization for large data
EnableInfiniteScrollingInfinite scroll loading
EnablePersistenceSave state to localStorage
EnableAdaptiveUIMobile-responsive rendering

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.72%
按下载量换算122

Claude

27.99%
按下载量换算104

Cursor

20.13%
按下载量换算75

Gemini CLI

10.15%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills