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

syncfusion-aspnetcore-combobox同步融合 aspnetcore 组合框

Agent Skill

syncfusion-aspnetcore-combobox 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-combobox

简介

用于查找、检索和筛选相关信息。syncfusion-aspnetcore-combobox 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据任务场景快速定位候选结果。
  • 通过 GitHub 仓库安装,适用于多种宿主环境。
  • 使用前建议确认权限范围和维护状态。
  • 注意可能触发联网或文件操作,需评估安全风险。

SKILL.md

Implementing Syncfusion ASP.NET Core ComboBox

Component Overview

The ComboBox is a powerful dropdown control that combines:

  • User-friendly selection with searchable/filterable options
  • Data binding support for local arrays and remote data sources
  • Rich customization through templates and styling
  • Advanced features like grouping, sorting, virtual scrolling, and cascading
  • Accessibility built-in for keyboard navigation and screen readers
  • ASP.NET Core integration via Tag Helper syntax

Key Capabilities:

  • Type-ahead/autocomplete with filtering
  • Custom values (allowing user-entered data not in list)
  • Data grouping and sorting
  • Dropdown templates for list items, headers, footers
  • Remote data binding with DataManager
  • Virtual scrolling for large datasets
  • RTL (right-to-left) support
  • WCAG 2.1 AA compliance

Documentation and Navigation Guide

Read the following references based on your needs:

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet package setup
  • Adding ComboBox to your ASP.NET Core project
  • Minimal working example with Tag Helper syntax
  • CSS/script imports and configuration
  • Running your first ComboBox

Data Binding

📄 Read: references/data-binding.md

  • Binding local array data (strings and objects)
  • Binding remote data via DataManager
  • Mapping complex data structures
  • Custom value support
  • OData and Web API integration

Filtering & Search

📄 Read: references/filtering-and-search.md

  • Enabling autocomplete and filtering
  • Search as user types
  • Changing filter type (contains, startsWith, endsWith)
  • Case-sensitive vs insensitive filtering
  • Setting minimum character threshold
  • Remote filtering from server

Templates & Customization

📄 Read: references/templates-and-customization.md

  • Item templates for list display
  • Header and footer templates
  • Group header customization
  • CSS class customization
  • Theme customization with CSS variables
  • Popup height/width configuration

Grouping & Sorting

📄 Read: references/grouping-and-sorting.md

  • Grouping items by category
  • Sorting in ascending/descending order
  • Custom sort functions
  • Combining grouping with sorting
  • Group header styling

Autofill & Autocomplete

📄 Read: references/autofill-and-autocomplete.md

  • Enable autofill for faster data entry
  • Autocomplete as user types
  • Combine autofill with filtering
  • Keyboard handling for suggestions
  • Performance with large datasets

Popup Resizing

📄 Read: references/popup-resize.md

  • Enable user-resizable popup
  • Set initial width/height
  • Persist resized dimensions
  • Responsive resize behavior
  • Resize handle styling

Advanced Features

📄 Read: references/advanced-features.md

  • Creating cascading ComboBoxes
  • Virtual scrolling for large datasets
  • Keyboard navigation (Tab, Enter, Arrow keys)
  • Accessibility attributes (ARIA labels)
  • RTL (right-to-left) support
  • Custom validation
  • Event handling (change, selecting, select, filtering)

Quick Start Example

Here's a minimal ComboBox setup in ASP.NET Core:

<!-- In _Layout.cshtml or Index.cshtml -->
@{
    ViewData["Title"] = "ComboBox Example";
    List<string> sports = new List<string> { "Cricket", "Badminton", "Basketball", "Tennis" };
}

<ejs-combobox id="games" dataSource="@sports" placeholder="Select a sport"></ejs-combobox>

With data binding:

@{
    var data = new List<object>
    {
        new { Id = 1, Text = "Microsoft", Code = "US" },
        new { Id = 2, Text = "Google", Code = "US" },
        new { Id = 3, Text = "Apple", Code = "US" }
    };
}

<ejs-combobox id="countries"
              dataSource="@data"
              fields-text="Text"
              fields-value="Id"
              placeholder="Select a company">
</ejs-combobox>

How-To Guides

Quick Autofill

Use autofill for faster user input with autocomplete suggestions:

<ejs-combobox autofill="true" allowFiltering="true"></ejs-combobox>

Resizable Popup

Let users resize the dropdown popup for better visibility:

<ejs-combobox allowResize="true" popupWidth="400px" popupHeight="300px"></ejs-combobox>

Common Patterns

Pattern 1: Filtered Search Enable filtering so users can search while typing:

<ejs-combobox id="combobox"
              dataSource="@data"
              allowFiltering="true"
              placeholder="Type to search">
</ejs-combobox>

Pattern 2: Cascading ComboBoxes Second ComboBox data depends on first selection. See advanced-features.md for complete example.

Pattern 3: Custom Value Entry Allow users to enter values not in the list:

<ejs-combobox id="combobox"
              allowCustom="true"
              dataSource="@data">
</ejs-combobox>

Pattern 4: Grouped Data Group items by category:

<ejs-combobox id="combobox"
              dataSource="@data"
              fields-groupBy="Category"
              fields-text="Name">
</ejs-combobox>

Key Properties

PropertyTypePurpose
dataSourcearray or DataManagerItems to display in dropdown
fields-textstringWhich field to display as label
fields-valuestringWhich field to use as selected value
placeholderstringHint text when empty
allowFilteringboolEnable search/filter as you type
allowCustomboolAllow user to enter values not in list
fields-groupBystringField to group items by
sortOrderAscending/DescendingSort order of items
popupHeightstringHeight of dropdown (e.g., "300px")
popupWidthstringWidth of dropdown
read-onlyboolPrevent user input, only allow selection
enabledboolEnable/disable the control

Common Use Cases

  1. Selecting from a list of countries/cities → Use data binding + optional grouping
  2. Searching through large datasets → Use filtering + virtual scrolling
  3. Creating dependent dropdowns → Use cascading pattern (see advanced features)
  4. Displaying categorized items → Use grouping and custom templates
  5. Matching API response data → Use DataManager with fields mapping
  6. Building accessible forms → Use ARIA attributes (see advanced features)

Next Steps:

For issues or troubleshooting, check individual reference files for gotchas and edge cases.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.89%
按下载量换算26

Claude

31.05%
按下载量换算23

Cursor

18.04%
按下载量换算13

Gemini CLI

10%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills