Extension of CustomTreeList that represents the root of a tree control

tree <ul>
├ treeItem <li>
├ treeItem <li>
│ └ treeList <ul>
│   ├ treeItem <li>
│   └ treeItem <li>
└ treeItem <li>

Type Parameters

  • T

Hierarchy (view full)

Constructors

Properties

controller: CustomTreeController<T>

Methods

  • Adds the given children to the given target at the given index. If no index is given, the children are appended at the end of the list.

    Parameters

    • _children: T[]
    • _target: T
    • Optional _index: number

    Returns void