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

syncfusion-angular-multi-selectsyncfusion Angular multi select 搜索

Agent Skill

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

总安装

528

周安装

22

GitHub Stars

公开资料未说明

下载量

176
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/angular-ui-components-skills --skill syncfusion-angular-multi-select

简介

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

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

SKILL.md

Implementing the Syncfusion Angular MultiSelect Dropdown

The MultiSelect Dropdown (ejs-multiselect) allows users to select one or more values from a predefined list. It supports four visual modes (Default/Box/Delimiter/CheckBox), rich filtering, templates, grouping, remote data, virtualization, and full Angular form integration.

Component Overview

ModeBehaviorUse When
DefaultSelected items shown as chips in inputStandard multi-select
BoxSame as Default, explicit box displayVisual clarity needed
DelimiterSelected items as comma-separated textSpace-constrained layouts
CheckBoxPopup shows checkboxes per itemBulk selection workflows

Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and package setup (ng add)
  • CSS imports and theme configuration
  • Basic <ejs-multiselect> in standalone Angular component
  • Popup height/width configuration
  • Angular version notes (standalone default in Angular 19+)

Data Binding & Value Binding

📄 Read: references/data-binding.md

  • Local arrays (strings, numbers, objects)
  • fields mapping: text, value, groupBy, iconCss, disabled
  • Remote data with DataManager (OData, Web API)
  • Pre-selecting values programmatically
  • Object binding with allowObjectBinding

Selection Modes, Chips & Item Control

📄 Read: references/selection-modes.md

  • mode property: Default / Box / Delimiter / CheckBox
  • CheckBox mode: CheckBoxSelection, showSelectAll, maximumSelectionLength
  • Chip customization via tagging event
  • Custom values with allowCustomValue
  • Disabling specific items: fields.disabled, disableItem()
  • addTagOnBlur and changeOnBlur behaviors

Filtering

📄 Read: references/filtering.md

  • Enabling allowFiltering + filtering event + updateData()
  • filterType: startsWith, contains, endsWith
  • Minimum character threshold before query fires
  • Remote filtering with DataManager
  • Case-insensitive matching

Templates

📄 Read: references/templates.md

  • itemTemplate — custom list item rendering with ng-template
  • valueTemplate — customize chip/selected value display
  • groupTemplate — custom group header content
  • headerTemplate / footerTemplate — popup top/bottom
  • noRecordsTemplate / actionFailureTemplate

Grouping & Cascading

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

  • fields.groupBy — organize items into categories
  • Fixed vs inline group headers
  • enableGroupCheckBox for group-level Select All
  • Cascading MultiSelect: parent change event → filter child data
  • Country → State → City cascade pattern

Form Integration

📄 Read: references/form-support.md

  • Template-driven forms: FormsModule, ngModel, two-way binding
  • Reactive forms: ReactiveFormsModule, FormGroup, FormControl
  • formControlName usage and validation
  • Required field and custom validator patterns

Advanced Features

📄 Read: references/advanced-features.md

  • Virtualization for large datasets (enableVirtualization)
  • Popup resize (allowResize, resize events)
  • Icons in list items (iconCss field)
  • Localization (L10n.load(), locale key overrides)
  • Accessibility: WAI-ARIA, keyboard navigation, WCAG 2.2
  • RTL support

API Reference

📄 Read: references/api.md

  • Complete list of all properties with types and defaults
  • All public methods with signatures, parameters, and return types
  • All events with argument types and usage examples
  • Module injection notes (CheckBoxSelectionService)

Quick Start

ng add @syncfusion/ej2-angular-dropdowns
// app.component.ts — Standalone Angular 19+
import { Component } from '@angular/core';
import { MultiSelectModule } from '@syncfusion/ej2-angular-dropdowns';

@Component({
  standalone: true,
  imports: [MultiSelectModule],
  selector: 'app-root',
  template: `
    <ejs-multiselect
      [dataSource]="skills"
      [fields]="fields"
      placeholder="Select skills"
      [(value)]="selectedSkills"
      (change)="onChange($event)">
    </ejs-multiselect>
  `
})
export class AppComponent {
  public skills = [
    { id: 1, name: 'Angular' },
    { id: 2, name: 'React' },
    { id: 3, name: 'TypeScript' },
    { id: 4, name: 'Node.js' },
  ];
  public fields = { text: 'name', value: 'id' };
  public selectedSkills: number[] = [1, 3]; // pre-select Angular & TypeScript

  onChange(args: any): void {
    console.log('Selected IDs:', args.value);
  }
}
/* styles.css */
@import '@syncfusion/ej2-base/styles/material3.css';
@import '@syncfusion/ej2-buttons/styles/material3.css';
@import '@syncfusion/ej2-inputs/styles/material3.css';
@import '@syncfusion/ej2-lists/styles/material3.css';
@import '@syncfusion/ej2-popups/styles/material3.css';
@import '@syncfusion/ej2-dropdowns/styles/material3.css';
@import '@syncfusion/ej2-angular-dropdowns/styles/material3.css';

Common Patterns

Checkbox Mode with Select All

import { MultiSelectModule, CheckBoxSelectionService } from '@syncfusion/ej2-angular-dropdowns';

@Component({
  standalone: true,
  imports: [MultiSelectModule],
  providers: [CheckBoxSelectionService],
  template: `
    <ejs-multiselect
      [dataSource]="items"
      mode="CheckBox"
      [showSelectAll]="true"
      selectAllText="Select All"
      unSelectAllText="Unselect All"
      [maximumSelectionLength]="5">
    </ejs-multiselect>
  `
})

Filtering with Remote Data

template: `
  <ejs-multiselect
    [dataSource]="data"
    [allowFiltering]="true"
    filterType="contains"
    (filtering)="onFilter($event)">
  </ejs-multiselect>
`

onFilter(args: FilteringEventArgs): void {
  const query = new Query().where('name', 'contains', args.text, true);
  args.updateData(this.data, query);
}

Reactive Form Integration

import { ReactiveFormsModule, FormControl } from '@angular/forms';

// In component:
public skillsControl = new FormControl([1, 3]); // pre-selected IDs

// In template:
// <ejs-multiselect [formControl]="skillsControl" [dataSource]="skills" [fields]="fields">
// </ejs-multiselect>

Key Props

PropertyTypePurpose
dataSource`any[] \DataManager`Items to display
fieldsFieldSettingsModelMaps text, value, groupBy, disabled, iconCss
valueany[]Currently selected values (use [(value)] for two-way)
modestringDefault, Box, Delimiter, CheckBox
allowFilteringbooleanEnables search within the dropdown
filterTypestringstartsWith, contains, endsWith
showSelectAllbooleanShows Select All in CheckBox mode
maximumSelectionLengthnumberCaps the number of selectable items
allowCustomValuebooleanLets users add values not in the list
enableVirtualizationbooleanOptimizes rendering for large lists
popupHeight / popupWidthstringConstrains popup dimensions
allowResizebooleanLets users drag-resize the popup
placeholderstringInput hint text

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35%
按下载量换算62

Claude

30.5%
按下载量换算54

Cursor

19.05%
按下载量换算34

Gemini CLI

9.52%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills