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

syncfusion-aspnetcore-dropdownlist同步融合 aspnetcore 下拉列表

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

公开资料未说明

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

同步融合 ASP.NET Core 下拉列表组件,提供多选项快速选择功能。

  • 适用于表单填写、筛选条件设置和数据分类选择等交互场景。
  • 通过 GitHub 安装并配置数据源绑定,支持动态加载和搜索过滤。
  • 使用前请验证数据源安全性,避免注入攻击风险。
  • 大量选项时应考虑分页加载优化性能表现。syncfusion-aspnetcore-dropdownlist 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing DropdownList in ASP.NET Core

The DropdownList is a single-selection control that displays a list of predefined values. Users can select one value from the dropdown list. It supports data binding, filtering, grouping, custom templates, and accessibility features.

When to Use This Skill

Use this skill when you need to:

  • Create a single-selection dropdown in an ASP.NET Core application
  • Bind dropdown data from server-side sources (array, database, API)
  • Enable filtering for large lists
  • Group related items
  • Customize item appearance with templates
  • Ensure accessibility compliance
  • Cascade dropdowns based on parent selection
  • Handle user selections with events

Component Overview

Key Features:

  • Data binding from local arrays and remote sources
  • Real-time filtering with searchbox
  • Automatic grouping of items
  • Customizable item and value templates
  • WCAG accessibility support with keyboard navigation
  • Cascading dropdown support
  • Virtual scrolling for large datasets

Common Properties:

  • DataSource - Data array or DataManager
  • Fields - Field mapping (text, value, groupBy, iconCss)
  • AllowFiltering - Enable/disable filtering
  • FilterType - Filtering algorithm (StartsWith, Contains, EndsWith)
  • GroupBy - Field name for grouping
  • ItemTemplate - Custom item rendering
  • ValueTemplate - Custom selected value rendering
  • Placeholder - Hint text
  • Value - Selected value
  • ReadOnly - Read-only state

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet package setup
  • TagHelper registration and configuration
  • Basic DropdownList implementation
  • HTML structure and minimal examples
  • CSS theme imports
  • Click and change event handlers

Data Binding and Sources

📄 Read: references/data-binding.md

  • Binding array of simple data (strings, numbers)
  • Binding complex JSON objects
  • Nested data structure mapping
  • Remote data binding with DataManager
  • OData and Web API integration
  • Field mapping and value binding
  • Understanding text and value fields

Filtering and Grouping

📄 Read: references/filtering-grouping.md

  • Enable and configure filtering
  • Filter types (StartsWith, Contains, EndsWith)
  • Case-insensitive filtering
  • Grouping items by category
  • Custom group headers
  • Sort order configuration (ascending/descending)
  • Virtual grouping for performance

Templates and Styling

📄 Read: references/templates-styling.md

  • Item template customization
  • Selected value template
  • Header and footer templates
  • Group header templates
  • CSS class customization
  • Theme styling and color schemes
  • Responsive sizing and positioning

Accessibility and Features

📄 Read: references/accessibility-features.md

  • WCAG 2.1 Level AA compliance
  • Keyboard navigation (arrow keys, Enter, Tab)
  • ARIA attributes and screen reader support
  • Focus management and focus indicators
  • Disabled state handling
  • RTL (Right-to-Left) language support
  • Tooltip and help text integration

Advanced Scenarios

📄 Read: references/advanced-scenarios.md

  • Cascading dropdowns (dependent selection)
  • Multi-select dropdown patterns
  • Virtual scrolling for large datasets
  • Search and autocomplete patterns
  • API integration and async data loading
  • Error handling and empty state
  • Performance optimization tips

Quick Start Example

Controller (HomeController.cs):

public class HomeController : Controller
{
    public IActionResult Index()
    {
        ViewBag.Fruits = new List<string> { "Apple", "Orange", "Banana", "Mango" };
        return View();
    }
}

View (Index.cshtml):

@Html.EJ2().DropDownList()
    .Id("DropdownList")
    .DataSource(ViewBag.Fruits)
    .Placeholder("Select fruit")
    .Render()

Common Patterns

Pattern 1: Basic Selection with Event Handling

Model:

public class Category
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Controller:

public IActionResult Index()
{
    var categories = new List<Category>
    {
        new Category { Id = 1, Name = "Electronics" },
        new Category { Id = 2, Name = "Furniture" },
        new Category { Id = 3, Name = "Clothing" }
    };
    ViewBag.Categories = categories;
    return View();
}

View:

@Html.EJ2().DropDownList()
    .Id("Category")
    .DataSource(ViewBag.Categories)
    .Fields(fields => fields.Text("Name").Value("Id"))
    .Change("onCategoryChange")
    .Placeholder("Select category")
    .Render()

<script>
function onCategoryChange(args) {
    console.log('Selected ID:', args.value);
    console.log('Selected Text:', args.text);
    // Perform action based on selection
}
</script>

Pattern 2: Cascading Dropdowns

Models:

public class Country
{
    public int Id { get; set; }
    public string Name { get; set; }
}

public class City
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int CountryId { get; set; }
}

Controller:

public IActionResult Index()
{
    var countries = new List<Country>
    {
        new Country { Id = 1, Name = "USA" },
        new Country { Id = 2, Name = "Canada" },
        new Country { Id = 3, Name = "Mexico" }
    };
    ViewBag.Countries = countries;
    return View();
}

[HttpGet("api/cities/{countryId}")]
public IActionResult GetCities(int countryId)
{
    var cities = new List<City>
    {
        new City { Id = 1, Name = "New York", CountryId = 1 },
        new City { Id = 2, Name = "Los Angeles", CountryId = 1 },
        new City { Id = 3, Name = "Toronto", CountryId = 2 },
        new City { Id = 4, Name = "Vancouver", CountryId = 2 }
    };

    var filtered = cities.Where(c => c.CountryId == countryId)
        .Select(c => new { c.Id, c.Name })
        .ToList();

    return Json(filtered);
}

View:

<!-- First dropdown -->
@Html.EJ2().DropDownList()
    .Id("Country")
    .DataSource(ViewBag.Countries)
    .Fields(fields => fields.Text("Name").Value("Id"))
    .Change("onCountryChange")
    .Placeholder("Select country")
    .Render()

<!-- Second dropdown (dependent) -->
@Html.EJ2().DropDownList()
    .Id("City")
    .Placeholder("Select city")
    .Render()

<script>
function onCountryChange(args) {
    var cityDropdown = document.getElementById('City').ej2_instances[0];

    if (args.value) {
        // Fetch cities for selected country
        fetch('/home/GetCities/' + args.value)
            .then(response => response.json())
            .then(data => {
                cityDropdown.dataSource = data;
                cityDropdown.value = null;
            })
            .catch(error => console.error('Error:', error));
    } else {
        cityDropdown.dataSource = [];
    }
}
</script>

Pattern 3: Filtered List with Remote Data

Model:

public class Product
{
    public int Id { get; set; }
    public string Name { get; set; }
    public decimal Price { get; set; }
}

API Controller:

[ApiController]
[Route("api/[controller]")]
public class ProductsController : ControllerBase
{
    [HttpGet]
    public IActionResult GetProducts()
    {
        var products = new List<Product>
        {
            new Product { Id = 1, Name = "Laptop", Price = 999.99m },
            new Product { Id = 2, Name = "Mouse", Price = 25.50m },
            new Product { Id = 3, Name = "Keyboard", Price = 75.00m },
            new Product { Id = 4, Name = "Monitor", Price = 299.99m }
        };
        return Ok(products);
    }
}

View:

@Html.EJ2().DropDownList()
    .Id("Products")
    .DataSource(d => d.Url("/api/products"))
    .Fields(fields => fields.Text("Name").Value("Id"))
    .AllowFiltering(true)
    .FilterType(FilterType.Contains)
    .Placeholder("Search products...")
    .Render()

Key Props and When to Use

PropertyTypeWhen to Use
DataSourceArray/DataManagerAlways required for populating items
FieldsFieldSettingsWhen binding complex data objects
Valuestring/numberWhen pre-selecting an item
AllowFilteringboolFor lists with 10+ items
FilterTypeFilterTypeCustomize search behavior
GroupBystringWhen items have logical categories
ItemTemplatestringFor rich item content
PlaceholderstringFor better UX guidance
ReadOnlyboolWhen preventing user changes
EnabledboolFor conditional enabling

Common Use Cases

1. Form Selection Field

Dropdown in a form for selecting category, status, or type

2. Cascading Selection

Multiple dropdowns where child depends on parent selection

3. Searchable List

Enable filtering for dropdown with large number of items

4. Grouped Items

Organize items by category (e.g., Product Category > Subcategory)

5. Dynamic Data

Load items from API or database based on user actions

6. Template Customization

Display rich content with icons, images, or badges in dropdown items


Next Steps


For the parent library overview and other components, see Implementing Syncfusion ASP.NET Core Components.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.67%
按下载量换算29

Claude

32.65%
按下载量换算26

Cursor

17.6%
按下载量换算14

Gemini CLI

9.92%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills