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

syncfusion-angular-dropdowntreesyncfusion Angular dropdowntree 命令行

Agent Skill

syncfusion-angular-dropdowntree 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,104

周安装

46

GitHub Stars

公开资料未说明

下载量

368
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

构建树形下拉选择器,支持层级结构与复选框联动。syncfusion-angular-dropdowntree 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 适用于组织架构、分类目录等多级嵌套数据选择场景。
  • 通过 GitHub 仓库安装,使用 npx 命令添加技能并指定路径。
  • 大数据量时应采用懒加载方式,按需展开子节点减少初始负担。
  • 选中状态需持久化显示,即使折叠父节点也能识别已选项。

SKILL.md

Implementing Syncfusion Angular Dropdown Tree

The Dropdown Tree component allows you to select single or multiple values from hierarchical data in a tree-like structure. It provides essential features like data binding, checkboxes, templates, and accessibility, making it ideal for displaying categorized selections, organizational hierarchies, and nested data structures.

When to Use This Skill

Use the Dropdown Tree component when you need to:

  • Hierarchical Selection - Allow users to select from nested, tree-structured data (categories, file hierarchies, organizational trees)
  • Multi-Selection - Enable checkbox-based selection of multiple items with optional auto-check (parent-child sync)
  • Dynamic Data - Bind local arrays, self-referential structures, or remote OData/REST endpoints
  • Customized Display - Use item templates, value templates, headers, and footers for rich UI customization
  • Large Datasets - Support remote data with lazy loading to optimize performance
  • Localization - Adapt component text and messages for different cultures and languages

Component Overview

The Dropdown Tree provides a compact dropdown input that expands to show a full tree structure with powerful filtering, selection, and templating capabilities. Unlike flat dropdowns, it maintains hierarchical relationships, enabling intuitive navigation through multi-level data.

Key Characteristics:

  • Single or multiple item selection
  • Checkbox-based multi-selection with optional auto-check
  • Local hierarchical and self-referential data binding
  • Remote data binding with DataManager (OData, ODataV4, WebAPI)
  • Rich templating: items, values, headers, footers, no-records, action-failure
  • Built-in accessibility with keyboard navigation and ARIA attributes
  • Full localization support

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Dependencies and package setup
  • Angular CLI configuration
  • Module registration (@syncfusion/ej2-angular-dropdowns)
  • CSS imports and theme configuration
  • Basic component integration
  • First working example with local data

Data Binding

📄 Read: references/data-binding.md

  • Hierarchical data structure (nested arrays)
  • Self-referential data binding (flat arrays with parentValue)
  • Remote data with DataManager
  • OData and ODataV4 adaptors
  • WebAPI adaptor configuration
  • Query-based filtering

Checkbox Features

📄 Read: references/checkbox-features.md

  • Enable checkboxes with showCheckBox property
  • Multi-selection without UI disruption
  • Auto-check hierarchical behavior (parent-child sync)
  • Select All feature (showSelectAll with custom labels)
  • Checkbox state synchronization
  • Intermediate states (partially checked)

Templates and Customization

📄 Read: references/templates.md

  • Item template for custom tree item rendering
  • Value template for selected item display
  • Header and footer templates
  • No records and action failure templates
  • Custom display template for multi-selection (Custom mode)
  • Template expressions and interpolation

Localization

📄 Read: references/localization.md

  • Supported localization keys and default messages
  • Setting locale and culture
  • Customizing locale-specific strings
  • Key messages: noRecordsTemplate, actionFailureTemplate, overflowCountTemplate, totalCountTemplate
  • Multi-language configuration

API Reference

📄 Read: references/api-reference.md

  • Core properties and field mappings
  • TreeSettings configuration options
  • Common events and callbacks
  • Best practices for property configuration
  • Performance optimization tips

Methods and Events

📄 Read: references/methods-and-events.md

  • Component methods: showPopup(), hidePopup(), refresh(), clearSelection(), expandAll(), collapseAll()
  • Selection events: change, select
  • Popup events: open, close, beforeOpen
  • Data events: dataBound, actionFailure, filtering
  • Lifecycle events: created, destroyed
  • User interaction events: focus, blur, keyPress
  • Event arguments and signatures
  • Complete working examples

Quick Start Example

Here's a minimal working example with hierarchical data:

import { Component } from '@angular/core';
import { DropDownTreeModule } from '@syncfusion/ej2-angular-dropdowns';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

@Component({
  selector: 'app-dropdown-tree',
  template: `<ejs-dropdowntree id='dropdowntree'
                [fields]='fields'
                placeholder='Select a category'></ejs-dropdowntree>`,
  standalone: true,
  imports: [DropDownTreeModule, FormsModule, ReactiveFormsModule]
})
export class AppComponent {
  // Hierarchical data structure with nested arrays
  public data = [
    {
      nodeId: '01', nodeText: 'Music',
      nodeChild: [
        { nodeId: '01-01', nodeText: 'Gouttes.mp3' }
      ]
    },
    {
      nodeId: '02', nodeText: 'Videos', expanded: true,
      nodeChild: [
        { nodeId: '02-01', nodeText: 'Naturals.mp4' },
        { nodeId: '02-02', nodeText: 'Wild.mpeg' }
      ]
    }
  ];

  // Field mapping: value=nodeId, text=nodeText, child=nodeChild
  public fields = {
    dataSource: this.data,
    value: 'nodeId',
    text: 'nodeText',
    child: 'nodeChild'
  };
}

Common Patterns

Pattern 1: Multi-Selection with Checkboxes

@Component({
  template: `<ejs-dropdowntree id='dropdowntree'
                [fields]='fields'
                [showCheckBox]='true'
                [showSelectAll]='true'
                selectAllText='Check All'
                unSelectAllText='Uncheck All'></ejs-dropdowntree>`,
  standalone: true,
  imports: [DropDownTreeModule, FormsModule, ReactiveFormsModule]
})
export class CheckboxExample {
  public data = [
    { id: 1, name: 'Music', hasChild: true, expanded: true },
    { id: 2, pid: 1, name: 'Hot Singles' },
    { id: 3, pid: 1, name: 'Rising Artists' }
  ];
  public fields = {
    dataSource: this.data,
    value: 'id',
    text: 'name',
    parentValue: 'pid',
    hasChildren: 'hasChild'
  };
}

When to use: Allow users to select multiple items in a single interaction, with convenient "Select All" option. Use selectAllText for unchecked label and unSelectAllText for checked label.

Pattern 2: Auto-Check (Parent-Child Sync)

@Component({
  template: `<ejs-dropdowntree [fields]='fields'
                [showCheckBox]='true'
                [treeSettings]='{ autoCheck: true }'></ejs-dropdowntree>`
})
export class AutoCheckExample {
  public fields = { dataSource: this.data, /* ... */ };
}

When to use: Enforce hierarchical consistency—checking a parent automatically checks all children, and unchecking the last child unchecks the parent (intermediate state for partial selection).

Pattern 3: Remote Data with OData

import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';

@Component({
  template: `<ejs-dropdowntree [fields]='fields'></ejs-dropdowntree>`
})
export class RemoteDataExample {
  public data = new DataManager({
    url: 'url',
    adaptor: new ODataV4Adaptor,
    crossDomain: true
  });

  public fields = {
    dataSource: this.data,
    query: new Query().from('Employees').select('EmployeeID,FirstName').take(5),
    value: 'EmployeeID',
    text: 'FirstName',
    hasChildren: 'EmployeeID'
  };
}

When to use: Fetch hierarchical data from a remote server, reducing initial load and supporting large datasets.

Pattern 4: Custom Item Display

@Component({
  template: `<ejs-dropdowntree [fields]='fields'
                [itemTemplate]='itemTemplate'></ejs-dropdowntree>`
})
export class TemplateExample {
  public itemTemplate = '<div><strong>${name}</strong> - ${type}</div>';
  public fields = { dataSource: this.data, /* ... */ };
}

When to use: Display rich, formatted content for each tree item (names, icons, metadata).

Key Features

FeatureUse Case
Hierarchical DataOrganize items in parent-child relationships (categories, departments, file trees)
CheckboxesEnable multi-selection without affecting dropdown UI
Auto-CheckSynchronize parent-child selection states automatically
Remote BindingFetch data from OData, REST APIs, or custom endpoints
TemplatesCustomize item display, headers, footers, and selected value format
AccessibilityFull keyboard navigation, ARIA attributes, screen reader support
LocalizationSupport for multiple languages and regional formats
Select AllQuickly select or deselect all items with a single click

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.96%
按下载量换算129

Claude

31.79%
按下载量换算117

Cursor

17.03%
按下载量换算63

Gemini CLI

9.1%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills