jax-js
    Preparing search index...

    Interface JsTreeDef

    Represents the structure of a JsTree.

    interface JsTreeDef {
        childTreedefs: JsTreeDef[];
        nodeMetadata: any;
        nodeType: NodeType;
        equals(other: JsTreeDef): boolean;
        toString(root?: boolean): string;
    }

    Properties

    childTreedefs: JsTreeDef[]
    nodeMetadata: any
    nodeType: NodeType

    Methods

    • Compare this tree definition with another.

      Parameters

      Returns boolean

    • Returns a string representation of this tree definition.

      Parameters

      • root: boolean = true

      Returns string