Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

syncfusion-angular-treeviewsyncfusion Angular treeview 搜索

Agent Skill

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

总安装

1,151

周安装

47

GitHub Stars

公开资料未说明

下载量

368
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Implementing TreeView in Angular

The TreeView component displays hierarchical data in a tree-like structure with built-in support for interactive features including checkboxes, drag-and-drop, in-place editing, multi-selection, filtering, sorting, templating, and keyboard navigation. It's ideal for displaying file systems, organizational charts, category hierarchies, navigation menus, and any nested data structure.

When to Use This Skill

  • Building hierarchical UIs: Displaying parent-child data relationships
  • File/folder browsers: Showing directory structures with expand/collapse
  • Navigation structures: Creating menu systems or site hierarchies
  • Data organization: Displaying categorized or nested data
  • Interactive selection: Implementing multi-selection or checkbox-based selection
  • Drag-and-drop interfaces: Reorganizing tree data by dragging nodes
  • Search/filter functionality: Finding nodes in large tree structures
  • Customized appearances: Styling nodes per level or with templates

Navigation Guide

Choose your task below to navigate to the relevant reference documentation:

Getting Started

📄 Read: references/getting-started.md

When to read: Setting up TreeView for the first time, installing packages, importing modules, basic component initialization, CSS imports, theme selection, creating your first tree.

Data Binding & Hierarchies

📄 Read: references/data-binding.md

When to read: Connecting data sources to TreeView, binding hierarchical or self-referential data, using DataManager, loading data from remote APIs, implementing lazy loading (load on demand), dynamically updating tree data.

Node Selection & Checkboxes

📄 Read: references/node-selection.md

When to read: Enabling checkboxes, managing checkbox states (checked/unchecked/tri-state), implementing multi-selection vs single-selection, using selection events, getting selected node IDs, disabling checkboxes, removing parent checkboxes.

Node Editing & Manipulation

📄 Read: references/node-editing.md

When to read: Enabling in-place editing, adding/removing/updating nodes programmatically, validating edited text, moving nodes, using node manipulation methods (addNodes, removeNodes, updateNode, moveNodes).

Drag and Drop

📄 Read: references/drag-and-drop.md

When to read: Enabling drag-and-drop functionality, restricting drops on specific nodes, handling drag events, customizing drop indicators, preventing invalid operations.

Templating & Styling Nodes

📄 Read: references/templating.md

When to read: Creating custom node templates, using dynamic icons, styling nodes based on level, customizing expand/collapse icons, showing tooltips, handling multi-line nodes, CSS customization.

Filtering & Sorting

📄 Read: references/filtering-sorting.md

When to read: Filtering nodes by text, implementing search functionality, sorting nodes globally or per level, organizing tree display order.

Context Menu Integration

📄 Read: references/context-menu.md

When to read: Adding context menu for node operations, handling right-click actions, implementing add/edit/delete via menu, creating custom menu items.

Accessibility, Advanced Features & API Migration

📄 Read: references/accessibility-advanced.md

When to read: Keyboard navigation (arrow keys, Enter, Space), ARIA attributes and accessibility compliance, RTL (right-to-left) support, getting child nodes, accordion behavior, advanced methods, migrating from EJ1 to EJ2, performance optimization.

Quick Start Example

Here's a minimal TreeView implementation with static hierarchical data:

import { Component } from '@angular/core';
import { TreeViewModule } from '@syncfusion/ej2-angular-navigations';
import { FormsModule } from '@angular/forms';

@Component({
  selector: 'app-tree-view',
  standalone: true,
  imports: [FormsModule, TreeViewModule],
  template: `
    <ejs-treeview
      id="treeView"
      [fields]="treeFields"
      [allowMultiSelection]="true">
    </ejs-treeview>
  `
})
export class TreeViewComponent {
  // Hierarchical data structure
  treeData = [
    {
      id: '01',
      name: 'Documents',
      hasChild: true,
      expanded: true,
      subChild: [
        { id: '01-01', name: 'Work Files' },
        { id: '01-02', name: 'Personal' }
      ]
    },
    {
      id: '02',
      name: 'Downloads',
      hasChild: true,
      subChild: [
        { id: '02-01', name: 'Images' },
        { id: '02-02', name: 'Videos' }
      ]
    }
  ];

  // Field mapping configuration
  treeFields = {
    dataSource: this.treeData,
    id: 'id',
    text: 'name',
    child: 'subChild',
    hasChildren: 'hasChild',
    expanded: 'expanded'
  };
}

Key TreeView Methods

MethodPurpose
addNodes(nodes, target?, index?, preventTargetExpand?)Add collection of nodes at target position
removeNodes(nodeIds)Remove nodes by ID
updateNode(target, newText)Replace node text (requires allowEditing enabled)
moveNodes(sourceNodes, target, index?, preventTargetExpand?)Move nodes to new parent and index position
getTreeData(nodeId?)Get all tree data or specific node data
getAllCheckedNodes()Get all checked node IDs including child nodes whether loaded or not
checkAll(nodes?)Check all or specific nodes
uncheckAll(nodes?)Uncheck all or specific nodes
beginEdit(nodeId)Start editing a node
expandAll(nodes?, level?, excludeHiddenNodes?, preventAnimation?)Expand all or specific nodes, optionally by level
collapseAll(nodes?, level?, excludeHiddenNodes?)Collapse all or specific nodes, optionally by level
ensureVisible(nodeId)Scroll to make node visible
disableNodes(nodeIds)Disable specific nodes
enableNodes(nodeIds)Enable specific nodes
getNode(nodeId)Get HTML element of node
destroy()Destroy TreeView component

Key TreeView Events

EventTriggered When
createdTreeView component is created
dataBoundData source binding is complete
dataSourceChangedTree data is modified (add/remove/update)
nodeClickedUser clicks on a node
nodeSelectedNode is selected
nodeSelectingBefore node selection (can prevent)
nodeCheckedCheckbox state changes
nodeCheckingBefore checkbox changes (can prevent)
nodeExpandingBefore node expansion
nodeExpandedNode is expanded
nodeCollapsingBefore node collapse
nodeCollapsedNode is collapsed
nodeEditingBefore node text editing
nodeEditedAfter node text is edited
nodeDragStartDrag operation begins
nodeDraggingNode is being dragged
nodeDragStopDrag ends before drop
nodeDroppedNode is dropped successfully
drawNodeBefore rendering each node (customize appearance)
keyPressUser presses keyboard key
destroyedTreeView component is destroyed

Common Patterns

Pattern 1: Checkbox-Based Selection

Enable checkboxes for multi-selection with hierarchical checkbox states:

treeFields = {
  dataSource: this.treeData,
  id: 'id',
  text: 'name',
  child: 'subChild',
  hasChildren: 'hasChild'
};

showCheckBox = true;  // Enable checkboxes
autoCheck = true;     // Parent/child auto-check

Pattern 2: File Browser with Drag-and-Drop

Create an interactive file browser with node reorganization:

<ejs-treeview
  [fields]="treeFields"
  [allowDragAndDrop]="true"
  [allowMultiSelection]="true"
  (nodeDragging)="onNodeDragging($event)"
  (nodeDropped)="onNodeDropped($event)">
</ejs-treeview>

Pattern 3: Search and Filter

Implement real-time filtering of tree nodes:

<input
  type="text"
  (keyup)="filterTree($event.target.value)"
  placeholder="Search nodes...">

<ejs-treeview
  #treeView
  [fields]="filteredFields">
</ejs-treeview>

Pattern 4: Editable Tree

Enable in-place node editing with validation:

<ejs-treeview
  [fields]="treeFields"
  [allowEditing]="true"
  (nodeEditing)="onNodeEditing($event)"
  (nodeEdited)="onNodeEdited($event)">
</ejs-treeview>

Key TreeView Properties

PropertyTypePurpose
fieldsObjectConfigures data source mapping (id, text, child, parentID, hasChildren, expanded, isChecked, etc.)
dataSourceArrayHierarchical or flat data array
allowMultiSelectionBooleanEnable multiple node selection
showCheckBoxBooleanDisplay checkboxes before nodes
autoCheckBooleanAuto-check children when parent is checked (default: true)
allowDragAndDropBooleanEnable drag-and-drop functionality
allowEditingBooleanEnable in-place node editing
loadOnDemandBooleanLoad child nodes only when parent expands (default: true)
sortOrderStringSort order: 'Ascending', 'Descending', or 'None'
cssClassStringApply custom CSS class for styling
enableRtlBooleanEnable right-to-left layout support
enablePersistenceBooleanSave and restore TreeView state (expanded nodes, selections)
checkedNodesArrayArray of node IDs that should be checked
selectedNodesArrayArray of node IDs that should be selected
nodeTemplateTemplateCustom template for rendering nodes
animationObjectConfigure expand/collapse animations
allowKeyboardNavigationBooleanEnable keyboard navigation (default: true)

Common Use Cases

Organizational Chart: Display employee hierarchy with parent-child relationships and custom templates showing roles.

File/Folder Browser: Show directory structure with drag-and-drop to move files between folders.

Category Navigation: Multi-level product categories with checkboxes for filtering and multi-selection.

Settings Menu: Hierarchical preferences or configuration options organized by topic.

Knowledge Base: Nested documentation topics with search and expand/collapse navigation.

Reference Files

  • getting-started.md - Installation, setup, basic initialization
  • data-binding.md - Data sources, hierarchies, remote data, lazy loading
  • node-selection.md - Checkboxes, multi-select, selection events
  • node-editing.md - Editing, adding, removing, updating nodes
  • drag-and-drop.md - Drag-and-drop configuration and restrictions
  • templating.md - Custom templates, icons, styling, tooltips
  • filtering-sorting.md - Filter, search, and sort functionality
  • context-menu.md - Context menu integration and node operations
  • accessibility-advanced.md - Keyboard navigation, ARIA, RTL, advanced methods

Next Steps:

  1. Choose your use case from the navigation guide above
  2. Read the relevant reference file
  3. Adapt code examples to your data structure
  4. Test with your data source

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.04%
按下载量换算122

Claude

31.49%
按下载量换算116

Cursor

18.79%
按下载量换算69

Gemini CLI

9.31%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills